Rudimentary Art of Programming & Development

Promoting Open Source, Always…

Python: using Memcache Client

leave a comment »

For some reason, it’s always hard to find example on how to create memcache client object using Python.

This time, I will remember:

import memcache
memc = memcache.Client(['127.0.0.1:11211'])

Written by didip

April 23, 2009 at 8:58 pm

Posted in memcache, python

Tagged with ,

Leave a Reply