Skip to content
Snippets Groups Projects
Commit 1e112f90 authored by Andreas Klöckner's avatar Andreas Klöckner Committed by Andreas Klöckner
Browse files

Add WriteOncePersistentDict.clear_in_mem_cache

parent d78d631e
No related branches found
No related tags found
No related merge requests found
Pipeline #451020 passed
...@@ -623,6 +623,7 @@ class WriteOncePersistentDict(_PersistentDictBase): ...@@ -623,6 +623,7 @@ class WriteOncePersistentDict(_PersistentDictBase):
.. automethod:: __getitem__ .. automethod:: __getitem__
.. automethod:: __setitem__ .. automethod:: __setitem__
.. automethod:: clear .. automethod:: clear
.. automethod:: clear_in_mem_cache
.. automethod:: store .. automethod:: store
.. automethod:: store_if_not_present .. automethod:: store_if_not_present
.. automethod:: fetch .. automethod:: fetch
...@@ -637,7 +638,15 @@ class WriteOncePersistentDict(_PersistentDictBase): ...@@ -637,7 +638,15 @@ class WriteOncePersistentDict(_PersistentDictBase):
*in_mem_cache_size* items *in_mem_cache_size* items
""" """
_PersistentDictBase.__init__(self, identifier, key_builder, container_dir) _PersistentDictBase.__init__(self, identifier, key_builder, container_dir)
self._cache = _LRUCache(in_mem_cache_size) self._in_mem_cache_size = in_mem_cache_size
self.clear_in_mem_cache()
def clear_in_mem_cache(self) -> None:
"""
.. versionadded:: 2023.1.1
"""
self._cache = _LRUCache(self._in_mem_cache_size)
def _spin_until_removed(self, lock_file, stacklevel): def _spin_until_removed(self, lock_file, stacklevel):
from os.path import exists from os.path import exists
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment