SqliteCache¶
-
class
privex.helpers.cache.SqliteCache.SqliteCache(db_file: str = None, memory_persist=False, use_pickle: bool = None, connection_kwargs: dict = None, *args, **kwargs)[source]¶ An SQLite3 backed implementation of
CacheAdapter. Creates and uses a semi-global Sqlite instance viaprivex.helpers.pluginby default.To allow for a wide variety of Python objects to be safely stored and retrieved from Sqlite, this class uses the
picklemodule for serialising + un-serialising values to/from Sqlite.Basic Usage:
>>> from privex.helpers.cache import SqliteCache >>> rc = SqliteCache() >>> rc.set('hello', 'world') >>> rc['hello'] 'world'
Disabling Pickling
In some cases, you may need interoperable caching with other languages. The
pickleserialisation technique is extremely specific to Python and is largely unsupported outside of Python. Thus if you need to share Sqlite cache data with applications in other languages, then you must disable pickling.WARNING: If you disable pickling, then you must perform your own serialisation + de-serialization on complex objects such as
dict,list,Decimal, or arbitrary classes/functions after getting or setting cache keys.Disabling Pickle per instance
Pass
use_pickle=Falseto the constructor, or access the attribute directly to disable pickling for a single instance of SqliteCache (not globally):>>> rc = SqliteCache(use_pickle=False) # Opt 1. Disable pickle in constructor >>> rc.use_pickle = False # Opt 2. Disable pickle on an existing instance
Disabling Pickle by default on any new instances
Change the static attribute
pickle_defaulttoFalseto disable the use of pickle by default across any new instances of SqliteCache:>>> SqliteCache.pickle_default = False
-
__init__(db_file: str = None, memory_persist=False, use_pickle: bool = None, connection_kwargs: dict = None, *args, **kwargs)[source] SqliteCacheuses an auto-generated database filename / path by default, based on the name of the currently running script ( retrieved fromsys.argv[0]), allowing for persistent caching - without any manual configuration of the adapter, nor the requirement for any running background services such asredis/memcached.- Parameters
db_file (str) – (Optional) Name of / path to Sqlite3 database file to create/use for the cache.
memory_persist (bool) – Use a shared in-memory database, which can be accessed by other instances of this class (in this process) - which is cleared after all memory connections are closed. Shortcut for
db_file='file::memory:?cache=shared'use_pickle (bool) – (Default:
True) Use the built-inpickleto serialise values before storing in Sqlite3, and un-serialise when loading from Sqlite3connection_kwargs (dict) – (Optional) Additional / overriding kwargs to pass to
sqlite3.connect()whenSqliteCacheManagerinitialises it’s sqlite3 connection.purge_every (int) – (Default: 300) Expired + abandoned cache records are purged using the DB manager method
SqliteCacheManager.purge_expired()duringget()/set()calls. To avoid performance issues, the actualSqliteCacheManager.purge_expired()method is only called if at leastpurge_everyseconds have passed since the last purge was triggered (last_purged_expired)
-
close()[source]¶ Close any cache library connections, and destroy their local class instances by setting them to
None.
-
connect(db=None, *args, connection_kwargs=None, memory_persist=None, **kwargs)[source]¶ Create an instance of the library used to interact with the caching system, ensure it’s connection is open, and store the instance on this class instance - only if not already connected.
Should return the class instance which was created.
-
get(key: str, default: Any = None, fail: bool = False, _auto_purge=True) → Any[source]¶ Return the value of cache key
key. If the key wasn’t found, or it was expired, thendefaultwill be returned.Optionally, you may choose to pass
fail=True, which will cause this method to raiseCacheNotFoundinstead of returningdefaultwhen a key is non-existent / expired.- Parameters
key (str) – The cache key (as a string) to get the value for, e.g.
example:testdefault (Any) – If the cache key
keyisn’t found / is expired, return this value (Default:None)fail (bool) – If set to
True, will raiseCacheNotFoundinstead of returningdefaultwhen a key is non-existent / expired.
- Raises
CacheNotFound – Raised when
fail=Trueandkeywas not found in cache / expired.- Return Any value
The value of the cache key
key, ordefaultif it wasn’t found.
-
pickle_default: bool = True¶ Change this to
Falseto disable the use ofpickleby default for any new instances of this class.
-
remove(*key: str) → bool[source]¶ Remove one or more keys from the cache.
If all cache keys existed before removal,
Truewill be returned. If some didn’t exist (and thus couldn’t remove), thenFalsewill be returned.- Parameters
key (str) – The cache key(s) to remove
- Return bool removed
Trueifkeyexisted and was removed- Return bool removed
Falseifkeydidn’t exist, and no action was taken.
-
set(key: str, value: Any, timeout: Optional[int] = 300, _auto_purge=True)[source]¶ Set the cache key
keyto the valuevalue, and automatically expire the key aftertimeoutseconds from now.If
timeoutisNone, then the key will never expire (unless the cache implementation loses it’s persistence, e.g. memory caches with no disk writes).
-
update_timeout(key: str, timeout: int = 300) → Any[source]¶ Update the timeout for a given
keytodatetime.utcnow() + timedelta(seconds=timeout)This method should accept keys which are already expired, allowing expired cache keys to have their timeout extended after expiry.
Example:
>>> c = CacheAdapter() >>> c.set('example', 'test', timeout=60) >>> sleep(70) >>> c.update_timeout('example', timeout=60) # Reset the timeout for ``'example'`` to ``now + 60 seconds`` >>> c.get('example') 'test'
- Parameters
- Raises
CacheNotFound – Raised when
keywas not found in cache (thus cannot extend timeout)- Return Any value
The value of the cache key
-
use_pickle: bool¶ If
True, will usepicklefor serializing objects before inserting into Sqlite, and un-serialising objects retrieved from Sqlite3. This attribute is set in__init__().Change this to
Falseto disable the use ofpickle- instead values will be passed to / returned from Sqlite3 as-is, with no serialisation (this may require you to manually serialize complex types such asdictandDecimalbefore insertion, and un-serialise after retrieval).
-
Methods¶
Methods
|
|
|
Close any cache library connections, and destroy their local class instances by setting them to |
|
Create an instance of the library used to interact with the caching system, ensure it’s connection is open, and store the instance on this class instance - only if not already connected. |
|
Return the value of cache key |
|
|
|
Remove one or more keys from the cache. |
|
Set the cache key |
|
Update the timeout for a given |