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.
- Host: GitHub
- URL: https://github.com/ebertti/micro-cache
- Owner: ebertti
- Created: 2012-07-18T20:48:08.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-07-19T15:10:41.000Z (almost 14 years ago)
- Last Synced: 2025-04-25T12:07:30.834Z (about 1 year ago)
- Language: Python
- Size: 124 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.