memached datastore implementation
Project description
# datastore-memcached
## datastore implementation for memcached
See [datastore](https://github.com/datastore/datastore).
### Install
From pypi (using pip):
sudo pip install datastore.memcached
From pypi (using setuptools):
sudo easy_install datastore.memcached
From source:
git clone https://github.com/datastore/datastore.memcached/ cd datastore.memcached sudo python setup.py install
### License
datastore.memcached is under the MIT License.
### Contact
datastore.memcached is written by [Juan Batiz-Benet](https://github.com/jbenet). It was extracted from [datastore](https://github.com/datastore/datastore) in Feb 2013.
Project Homepage: [https://github.com/datastore/datastore.memcached](https://github.com/datastore/datastore.memcached)
Feel free to contact me. But please file issues in github first. Cheers!
### Hello World
>>> import pylibmc >>> import datastore.memcached >>> >>> mc = pylibmc.Client(['127.0.0.1']) >>> ds = datastore.memcached.MemcachedDatastore(mc) >>> >>> hello = datastore.Key('hello') >>> ds.put(hello, 'world') >>> ds.contains(hello) True >>> ds.get(hello) 'world' >>> ds.delete(hello) >>> ds.get(hello) None
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for datastore.memcached-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a71dc839091e4b131a4bb0d5223a46e98052c3cdad8407e21136c4c8ea34fee |
|
MD5 | e4f0fe7c958298fe8c312a831ab8df49 |
|
BLAKE2b-256 | 24c1fecf530918392811315b8fd0007aae0b46f57b72ac15a56c6fdd3f1daec5 |