Ultra fast memcache client written in highly optimized C++ with Python bindings
Project description
ultramemcache is an ultra fast Memcache client written in highly optimized C++ with Python bindings.
To install it just run Pip as usual:
$ pip install umemcache
ultramemcache provides a Client class you can use to interact with Memcache:
>>> import umemcache >>> c = umemcache.Client('127.0.0.1:11211') >>> c.connect() >>> c.set('key', 'value') 'STORED' >>> c.get('key')[0] 'value'
By design, ultramemcache limits the size of Memcache items to 1000*1000 bytes, but you can change this limitation by using the max_item_size argument when creating a Client class.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
umemcache-1.6.3.zip
(26.1 kB
view hashes)
Built Distributions
umemcache-1.6.3.win32-py2.7.exe
(209.8 kB
view hashes)
umemcache-1.6.3.win32-py2.6.exe
(210.1 kB
view hashes)