Python: using Memcache Client
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'])
Promoting Open Source, Always…
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'])