Metadata-Version: 1.0
Name: Products.MemcachedManager
Version: 1.0rc1
Summary: Memcache cache manager for Zope
Home-page: UNKNOWN
Author: Sidnei da Silva
Author-email: plone-developers@lists.sourceforge.net
License: ZPL
Description: Introduction
        ============
        
        MemcachedManager is a cache similar to RAMCacheManager, using memcached for
        storage.
        
        Dependencies
        ============
        
        `memcached`_
        
        This needs to be set up on a server Zope can connect to. You provide the
        IP address in the MemcachedManager settings screen.
        
        
        `cmemcache`_
        
        Install this in site packages (the regular "setup.py install") to enable
        python to talk to memcached. A note of caution: while cmemcache is faster
        it is also less stable.
        
        or...
        
        `python-memcached`_
        
        Install this in site packages (the regular ``setup.py install``) to enable
        python to talk to memcached.
        
        
        Credits
        =======
        
        Thanks to Mike Solomon <mas63@cornell.edu> for key validation
        
        .. _memcached: http://www.danga.com/memcached/
        .. _cmemcache: http://gijsbert.org/cmemcache/index.html
        .. _python-memcached: ftp://ftp.tummy.com/pub/python-memcached/
        
        
        Changelog
        =========
        
        1.0rc1 - Janunary 13, 2009
        --------------------------
        
        * Get rid of the entry list. For invalidation we bump
        a counter instead.
        [tesdal]
        
        * Use pickle protocol 2.
        [tesdal]
        
        
        1.0b2 - August 25, 2008
        -----------------------
        
        * Mirror invalidation support
        [tesdal]
        
        
        1.0b1 - June 5, 2008
        --------------------
        
        * Repackage MemcachedManager as an egg.
        [wichert]
        
        * Remove old style test setup and update it to current conventions.
        [wichert]
        
        
Keywords: memcache Zope cache cachemanager
Platform: UNKNOWN
Classifier: Framework :: Zope2
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
