backends.py
51 lines
| 1.7 KiB
| text/x-python
|
PythonLexer
r483 | # RhodeCode VCSServer provides access to different vcs backends via network. | |||
r620 | # Copyright (C) 2014-2019 RhodeCode GmbH | |||
r483 | # | |||
# This program is free software; you can redistribute it and/or modify | ||||
# it under the terms of the GNU General Public License as published by | ||||
# the Free Software Foundation; either version 3 of the License, or | ||||
# (at your option) any later version. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU General Public License | ||||
# along with this program; if not, write to the Free Software Foundation, | ||||
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||||
import logging | ||||
from dogpile.cache.backends import memory as memory_backend | ||||
r497 | from vcsserver.lib.memory_lru_dict import LRUDict, LRUDictDebug | |||
r483 | ||||
_default_max_size = 1024 | ||||
log = logging.getLogger(__name__) | ||||
class LRUMemoryBackend(memory_backend.MemoryBackend): | ||||
pickle_values = False | ||||
def __init__(self, arguments): | ||||
max_size = arguments.pop('max_size', _default_max_size) | ||||
r497 | LRUDictClass = LRUDict | |||
if arguments.pop('log_key_count', None): | ||||
LRUDictClass = LRUDictDebug | ||||
arguments['cache_dict'] = LRUDictClass(max_size) | ||||
r483 | super(LRUMemoryBackend, self).__init__(arguments) | |||
def delete(self, key): | ||||
r497 | try: | |||
r483 | del self._cache[key] | |||
r497 | except KeyError: | |||
# we don't care if key isn't there at deletion | ||||
pass | ||||
r483 | ||||
def delete_multi(self, keys): | ||||
for key in keys: | ||||
r497 | self.delete(key) | |||