Metadata-Version: 1.1
Name: dcextensions
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/OnroerendErfgoed/dcextensions
Author: Wouter Claeys
Author-email: wouter.claeys@rwo.vlaanderen.be
License: UNKNOWN
Description: ============================
        Extensions for dogpile.cache
        ============================
        
        This library provides extensions for dogpile.cache. For the time being only one extension is provided, a memory backend that can be limited in size (number of items to cache).
        
        .. image:: https://badge.fury.io/py/dcextensions.png
                :target: http://badge.fury.io/py/dcextensions
        
        .. image:: https://travis-ci.org/OnroerendErfgoed/dcextensions.svg?branch=master
                :target: https://travis-ci.org/OnroerendErfgoed/dcextensions
        
        .. image:: https://coveralls.io/repos/OnroerendErfgoed/dcextensions/badge.png?branch=master
                :target: https://coveralls.io/r/OnroerendErfgoed/dcextensions?branch=master
        
        Installation
        ------------
        
        To install dcextensions, use pip
        
        .. code-block:: bash
            
            pip install dcextensions
        
        Usage
        -----
        
        To use the memory backend
        
        .. code-block:: python
        
        .. code-block:: python
        
            from dogpile.cache import make_region
        
            region = make_region().configure(
                'dogpile.cache.memory.limited',
                expiration_time = 3600,
                arguments = {
                    'cache_size': 100,
                    'cache_dict': my_dict
                }
            )
        
        
        Both arguments are optional. When use my_dict must be an instance of OrderedDict.
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Software Distribution
