Metadata-Version: 1.1
Name: django-iron-sessions
Version: 0.0.1
Summary: iron.io cache as Django sessions backend
Home-page: https://github.com/hellysmile/django-iron-sessions
Author: hellysmile
Author-email: hellysmile@gmail.com
License: http://www.apache.org/licenses/LICENSE-2.0
Description: ====================
        django-iron-sessions
        ====================
        
        :Info: `iron.io <http://www.iron.io/>`_ cache as Django sessions backend
        
        Why new sessions backend with non free solution?!
        -------------------------------------------------
        
        Why not! `iron.io <http://www.iron.io/>`_ is great service with
        awesome live support :)
        
        `iron.io <http://www.iron.io/>`_ provides 100mb and 10M API requests
        per month for free
        
        
        10 000 000 / 30 / 24 / 60 / 60 it's about 4 requests per seconds
        with 24/7 loading for your Django appliction
        
        quick start
        -----------
        
        run::
        
            heroku addons:add iron_cache:developer
            pip install django-iron-sessions
        
        configure set ``iron_sessions.session`` as your session engine::
        
            SESSION_ENGINE = 'iron_sessions.session'
        
        options::
        
            IRON_CACHE_PROJECT_ID=<YOUR_PROJECT_ID>
            IRON_CACHE_TOKEN=<YOUR_TOKEN>
        
        *if you are on heroku, just skip it*
        
        tests::
        
            export IRON_CACHE_PROJECT_ID=<YOUR_PROJECT_ID>
            export IRON_CACHE_TOKEN=<YOUR_TOKEN>
            tox
        
        *Python 3.2+ Django 1.5+ ready,
        but currently iron_core and iron_cache have some issues with Python 3*
        
Keywords: django,sessions,iron cache,heroku
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
