1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/src/pip/_vendor/cachecontrol/cache.py

40 lines
790 B
Python
Raw Normal View History

2014-04-24 13:20:51 +02:00
"""
2014-12-18 03:45:01 +01:00
The cache object API for implementing caches. The default is a thread
safe in-memory dictionary.
2014-04-24 13:20:51 +02:00
"""
from threading import Lock
class BaseCache(object):
def get(self, key):
raise NotImplemented()
def set(self, key, value):
raise NotImplemented()
def delete(self, key):
raise NotImplemented()
2014-12-18 03:45:01 +01:00
def close(self):
pass
2014-04-24 13:20:51 +02:00
class DictCache(BaseCache):
def __init__(self, init_dict=None):
self.lock = Lock()
self.data = init_dict or {}
def get(self, key):
return self.data.get(key, None)
def set(self, key, value):
with self.lock:
self.data.update({key: value})
def delete(self, key):
with self.lock:
if key in self.data:
self.data.pop(key)