Metadata-Version: 2.1
Name: umemcache
Version: 1.6.3
Summary: Ultra fast memcache client written in highly optimized C++ with Python bindings
Home-page: http://www.esn.me
Author: Jonas Tarnstrom
Author-email: jonas.tarnstrom@esn.me
License: BSD License
Download-URL: http://github.com/esnme/ultramemcache
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7

ultramemcache
=============

*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.


