An open API service indexing awesome lists of open source software.

https://github.com/ebertti/micro-cache

Simple memory cache for simple rotines. Great use to prevent IO.
https://github.com/ebertti/micro-cache

Last synced: 12 months ago
JSON representation

Simple memory cache for simple rotines. Great use to prevent IO.

Awesome Lists containing this project

README

          

micro-cache
===========

Simple memory cache for simple rotines. Great use to prevent IO.

Sample
------

Sample using Django ORM

from microcache import MicroCache

microCache = MicroCache()
users = microCache.get('users', User.objects.all)

Please help out
---------------
This project is still under development. Feedback and suggestions are very
welcome and I encourage you to use the [Issues
list](http://github.com/ebertti/micro-cache/issues) on Github to provide that
feedback.

Feel free to fork this repo and to commit your additions. For a list of all
contributors, please see the [AUTHORS](AUTHORS) file.