An oslo.config enabled dogpile.cache.
Go to file
Davanum Srinivas 0a7c3bf46b Implement get/set/delete multiple keys for dictionary backend
For some Nova scenarios, we will need suppot for
set_multi/get_multi/delete_multi for writing to either
memcache or dictionary backend. So let's add support for
operating on multiple keys. Note that if we don't implement
this the default CacheBackend class throws NotImplementedError

Closes-Bug: #1483322
Change-Id: I1aca9e65b3be038a507ced8dd039c5413d6c4ac2
2015-08-24 21:30:14 -04:00
doc/source Fixes up the API docs and module index 2015-07-09 18:22:58 -05:00
oslo_cache Implement get/set/delete multiple keys for dictionary backend 2015-08-24 21:30:14 -04:00
oslo.cache/locale Setup translations 2015-08-09 07:09:11 +02:00
.coveragerc Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
.gitignore Ignore the .eggs/ directory 2015-08-18 07:56:33 -07:00
.gitreview Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
.mailmap Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
.testr.conf Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
babel.cfg Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
CONTRIBUTING.rst Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
HACKING.rst Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
LICENSE Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
MANIFEST.in Initial commit from oslo cookiecutter template 2015-04-15 11:22:01 -05:00
README.rst Get project basics configured 2015-05-18 08:57:22 -05:00
requirements.txt Move optional backend dependencies into setup.cfg [extras] 2015-08-18 09:09:56 -07:00
setup.cfg Move optional backend dependencies into setup.cfg [extras] 2015-08-18 09:09:56 -07:00
setup.py Updated from global requirements 2015-07-15 01:36:24 +00:00
test-requirements.txt Move optional backend dependencies into setup.cfg [extras] 2015-08-18 09:09:56 -07:00
tox.ini Move optional backend dependencies into setup.cfg [extras] 2015-08-18 09:09:56 -07:00

oslo.cache

oslo.cache aims to provide a generic caching mechanism for OpenStack projects by wrapping the dogpile.cache library. The dogpile.cache library provides support memoization, key value storage and interfaces to common caching backends such as Memcached.