Metadata-Version: 1.1
Name: django-cacheback-pozytywnie
Version: 0.7
Summary: Caching library for Django that uses Celery to refresh cache items asynchronously
Home-page: https://github.com/codeinthehole/django-cacheback
Author: David Winterbottom
Author-email: david.winterbottom@gmail.com
License: MIT
Description: =========
        Cacheback
        =========
        ----------------------------------------
        Asynchronous cache refreshing for Django
        ----------------------------------------
        
        What does this library do?
        --------------------------
        It's an extensible caching library that refreshes stale cache items
        asynchronously using a Celery_ task.  The key idea being that it's
        better to serve a stale item (and populate the cache asynchronously) than block
        the user in order to populate the cache synchronously.
        
        .. _Celery: http://celeryproject.org/
        
        Using this library, you can rework your views so that all reads are from
        cache - which can be a significant performance boost.  
        
        A corollary of this technique is that cache hammering can be handled simply and
        elegantly, avoiding sudden surges of expensive reads when a cached item becomes stale.
        
        Do you have good docs?
        ----------------------
        Yup - `over on readthedocs.org`_.
        
        .. _`over on readthedocs.org`: http://django-cacheback.readthedocs.org/en/latest/
        
        Do you have tests?
        ------------------
        You betcha!  
        
        .. image:: https://secure.travis-ci.org/codeinthehole/django-cacheback.png
            :target: https://travis-ci.org/#!/codeinthehole/django-cacheback
        
        
        Can I use this in my project?
        -----------------------------
        Probably - subject to the `MIT license`_.
        
        .. _`MIT license`: https://github.com/codeinthehole/django-cacheback/blob/master/LICENSE
        
        I want to contribute!
        ---------------------
        Brilliant!  Here are the `contributing guidelines`_.
        
        .. _`contributing guidelines`: http://django-cacheback.readthedocs.org/en/latest/contributing.html
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
