Added delete option to database storage.
This commit is contained in:
parent
308604a33c
commit
963b5bc68b
1868 changed files with 192402 additions and 13278 deletions
20
venv/Lib/site-packages/cachetools/__init__.py
Normal file
20
venv/Lib/site-packages/cachetools/__init__.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
"""Extensible memoizing collections and decorators."""
|
||||
|
||||
from .cache import Cache
|
||||
from .decorators import cached, cachedmethod
|
||||
from .lfu import LFUCache
|
||||
from .lru import LRUCache
|
||||
from .rr import RRCache
|
||||
from .ttl import TTLCache
|
||||
|
||||
__all__ = (
|
||||
'Cache',
|
||||
'LFUCache',
|
||||
'LRUCache',
|
||||
'RRCache',
|
||||
'TTLCache',
|
||||
'cached',
|
||||
'cachedmethod'
|
||||
)
|
||||
|
||||
__version__ = '4.1.1'
|
Loading…
Add table
Add a link
Reference in a new issue