mongodict icon indicating copy to clipboard operation
mongodict copied to clipboard

Provide a memcached-like API

Open turicas opened this issue 13 years ago • 1 comments

Should provide a memcached-like API, with methods like:

  • MongoDict.set(key, value)
  • MongoDict.get(key, default=None)
  • MongoDict.delete(key)
  • MongoDict.incr(key, increment=1)
  • MongoDict.decr(key, decrement=1)
  • and so on...

turicas avatar Jul 20 '12 12:07 turicas

These API references can help when implementing a compatibility layer:

  • http://sendapatch.se/projects/pylibmc/reference.html
  • https://developers.google.com/appengine/docs/python/memcache/clientclass

turicas avatar Dec 12 '12 21:12 turicas