Metadata-Version: 1.1
Name: django-denormalize
Version: 0.2.1
Summary: Converts Django ORM objects into data documents, and keeps them in sync
Home-page: https://bitbucket.org/wojas/django-denormalize/
Author: Konrad Wojas
Author-email: konrad@wojas.nl
License: LICENSE
Description: Django-denormalize allows you to convert a tree of Django ORM objects into one data document. With 'data document' we mean a structure of dicts, lists and other primitive types, that can be serialized to JSON or a Python Pickle.
        
        The resulting document can be used in combination with the Django cache layer to create blazingly fast views that do not hit the database. The data can also be synced to a NoSQL store like MongoDB, for consumption by other frameworks, like Meteor (NodeJS based).
        
        If any data changes in the ORM (even if it's on a some deep many-to-many relationship far away from the root object), django-denormalize will automatically trigger a cache invalidation of the root object's document and/or sync the new document to your preferred NoSQL store.
        
Keywords: django orm cache mongodb nosql meteor
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
Classifier: License :: OSI Approved :: MIT License
