1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Source: python-cachetools
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Christian Kastner <ckk@debian.org>
Build-Depends: debhelper-compat (= 13),
dh-python,
pybuild-plugin-pyproject,
python3-all,
python3-setuptools,
Rules-Requires-Root: no
Standards-Version: 4.6.2
Homepage: https://github.com/tkem/cachetools/
Vcs-Git: https://salsa.debian.org/python-team/packages/python-cachetools.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-cachetools
Package: python3-cachetools
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: extensible memoizing collections and decorators for Python 3
This Python 3 module provides various memoizing collections and decorators,
including variants of the Python 3 Standard Library's functools.lru_cache()
function decorator.
.
The supported cache algorithms are:
.
* First in first out (FIFO)
* Least recently used (LRU)
* Most recently used (MRU)
* Least frequently used (LFU)
* Random replacement (RR)
* Per-item time-to-live (TTL)
* Time aware least recently used (TLRU)
|