Metadata-Version: 1.1
Name: muffin-memcached
Version: 0.2.0
Summary: UNKNOWN
Home-page: https://github.com/drgarcia1986/muffin-memcached
Author: Diego Garcia
Author-email: drgarcia1986@gmail.com
License: MIT
Description: Muffin-Memcached
        ############
        
        .. _description:
        
        Muffin-Memcached -- A simple memcached plugin for muffin_ framework.
        
        .. _badges:
        
        .. image:: http://img.shields.io/travis/drgarcia1986/muffin-memcached.svg?style=flat-square
            :target: http://travis-ci.org/drgarcia1986/muffin-memcached
            :alt: Build Status
        
        .. _requirements:
        
        Requirements
        =============
        
        - python >= 3.4
        - muffin >= 0.5.5
        
        .. _installation:
        
        Installation
        =============
        
        **Muffin-Memcached** should be installed using pip: ::
        
            pip install muffin-memcached
        
        .. _usage:
        
        Usage
        =====
        
        Add *muffin-memcached* to muffin plugin list:
        
        .. code-block:: python
        
            import muffin
        
        
            app = muffin.Application(
                'example',
        
                PLUGINS=(
                    'muffin_memcached',
                )
            )
        
        And use *memcached* plugin:
        
        .. code-block:: python
        
            @app.register('/cached')
            class Example(muffin.Handler):
        
                @asyncio.coroutine
                def get(self, request):
                    return (yield from app.ps.memcached.get('foo'))
        
        .. _options:
        
        Options
        -------
        
        ========================== ==============================================================
         *MEMCACHED_HOST*          Host of memcached server (``127.0.0.1``)
         *MEMCACHED_PORT*          Port of memcached server (``11211``)
         *MEMCACHED_POOLSIZE*      Size of connection pool  (``1``)
        ========================== ==============================================================
        
        .. _bugtracker:
        
        Bug tracker
        ===========
        
        If you have any suggestions, bug reports or
        annoyances please report them to the issue tracker
        at https://github.com/drgarcia1986/muffin-memcached/issues
        
        .. _contributing:
        
        Contributing
        ============
        
        Development of Muffin-Memcached happens at: https://github.com/drgarcia1986/muffin-memcached
        
        
        Contributors
        =============
        
        * drgarcia1986_ (Diego Garcia)
        
        .. _license:
        
        License
        =======
        
        Licensed under a `MIT license`_.
        
        .. _links:
        
        
        .. _muffin: https://github.com/klen/muffin
        .. _drgarcia1986: https://github.com/drgarcia1986
        .. _MIT license: http://opensource.org/licenses/MIT
        
Keywords: asyncio,aiohttp,muffin,memcached
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
