https://github.com/guillotinaweb/guillotina_aiocache
https://github.com/guillotinaweb/guillotina_aiocache
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/guillotinaweb/guillotina_aiocache
- Owner: guillotinaweb
- Created: 2017-05-11T02:31:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-11T16:04:43.000Z (over 8 years ago)
- Last Synced: 2025-04-19T19:25:48.865Z (6 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
Awesome Lists containing this project
README
Introduction
============`guillotina_aiocache` implements aiocache into guillotina
Configuration
-------------app_settings for this::
{
"aiocache": {
'cache': "aiocache.RedisCache",
'endpoint': "127.0.0.1",
'port': 6379,
'timeout': 1,
'plugins': [
{'class': "aiocache.plugins.HitMissRatioPlugin"},
{'class': "aiocache.plugins.TimingPlugin"}
]
}
}