2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2021-09-29 11:38:52 by Adam Ciarcinski | Files touched by this commit (2) | |
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``.
|
2021-08-05 15:23:15 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-cachelib: updated to 0.2.0
Version 0.2.0
Support for Python 2 has been dropped. Only Python 3.6 and above are supported.
Fix FileSystemCache.set incorrectly considering value overrides on existing keys \
as new cache entries.
SimpleCache and FileSystemCache first remove expired entries, followed by older \
entries, when cleaning up.
Fix problem where file count was not being updated in FileSystemCache.get and \
FileSystemCache.has after removals.
When attempting to access non-existent entries with Memcached, these will now be \
initialized with a given value delta.
|
2021-06-09 22:22:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cachelib: updated to 0.1.1
Version 0.1.1
Fix FileSystemCache on Windows
|
2021-02-25 15:59:15 by Pierre Pronchery | Files touched by this commit (4) |
Log message:
py-cachelib: import version 0.1
py-cachelib is a collection of cache libraries in the same API interface.
Extracted from werkzeug.
|