Tag Archives: google app engine

My First Callcast

Check it out.  Thanks Kevin!

friendfeed.py Patch for use on Google App Engine

Ask and ye shall receive.  Attached is a patch for using friendfeed.py on Google App Engine.  You need to also have demjson available.  Google App Engine does not allow use of many C modules (like cjson) and both json and simplejson will throw decoding errors from time to time. demjson is slow but won’t throw [...]

Google App Engine + Memcached + FF To Go = Bliss

Google App Engine gained support for memcached today, a very high performance caching system, and I’m already using it in FF To Go.
I’ll share some code with you so you know how it works.  This is the code that renders the public feed:
def public(request):
f = friendfeed.FriendFeed()
try:
[...]