Path to this page:
Subject: CVS commit: pkgsrc/devel/py-cachelib
From: Adam Ciarcinski
Date: 2021-09-29 11:38:52
Message id: 20210929093853.000DDFA97@cvs.NetBSD.org
Log Message:
py-cachelib: updated to 0.3.0
Version 0.3.0
-------------
- Optimize ``FileSystemCache`` pruning.
- Fix a bug in ``FileSystemCache`` where entries would not be removed
when the total was over the threshold, and the entry count would be
lost.
- ``FileSystemCache`` logs system-related exceptions.
- Removal of expired entries in ``FileSystemCache`` is only triggered
if the number of entries is over the ``threshhold`` when calling
``set``. ``get`` ``has`` still return ``None`` and ``False``
respectively for expired entries, but will not remove the files. All
removals happen at pruning time or explicitly with ``clear`` and
``delete``.
Files: