Metadata-Version: 1.0
Name: django-heroku-memcacheify
Version: 0.1
Summary: Automatic Django memcached configuration on Heroku.
Home-page: https://github.com/rdegges/django-heroku-memcacheify
Author: Randall Degges
Author-email: rdegges@gmail.com
License: UNLICENSE
Description: # django-heroku-memcacheify
        
        Automatic Django memcached configuration on Heroku.
        
        
        ![Deploying memcached is easy](https://github.com/rdegges/django-heroku-memcacheify/raw/master/assets/memcacheify.jpg)
        
        
        ## Install
        
        To install ``django-heroku-memcacheify``, simply run
        ``pip install django-heroku-memcacheify`` and you'll get the latest version
        installed automatically.
        
        
        ## Usage
        
        Modify your Django ``settings.py`` file, and set:
        
        ``` python
        from memcacheify import memcacheify
        
        CACHES = memcacheify()
        ```
        
        That's it.
        
        If you've got the [Heroku memcache addon](https://addons.heroku.com/memcache)
        installed for your app, Django will be automatically configured to use it. If
        not, you'll get the default local memory caching that Django offers.
        
        
        ## References
        
        If you're confused, you should probably read:
        
        - [Heroku's Getting Started Guide](http://devcenter.heroku.com/articles/django)
        - [Heroku's memcache Addon Documentation](https://devcenter.heroku.com/articles/memcache#using_memcache_from_python)
        
        
        ## Tests
        
        [![Build Status](https://secure.travis-ci.org/rdegges/django-heroku-memcacheify.png?branch=master)](http://travis-ci.org/rdegges/django-heroku-memcacheify)
        
        Want to run the tests? No problem:
        
        ``` bash
        $ git clone git://github.com/rdegges/django-heroku-memcacheify.git
        $ cd django-heroku-memcacheify
        $ python setup.py develop
        ...
        $ pip install -r requirements.txt  # Install test dependencies.
        $ nosetests
        .............
        ----------------------------------------------------------------------
        Ran 13 tests in 0.166s
        
        OK
        ```
        
Keywords: django heroku cloud cache memcache memcached awesome epic
Platform: UNKNOWN
