Cache
The Cache
class is a component in the llamarch
library that provides a simple interface to work with caches, in particular with Redis.
Cache
A simple cache class using Redis as the backend.
Parameters: |
|
---|
Attributes: |
|
---|
Source code in llamarch/common/cache.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
set(key, value, expiration=None)
Set a key-value pair in the cache with an optional expiration.
Parameters: |
|
---|
Returns: |
|
---|
Source code in llamarch/common/cache.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
get(key)
Retrieve the value associated with a key from the cache.
Parameters: |
|
---|
Returns: |
|
---|
Source code in llamarch/common/cache.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
delete(key)
Delete a key-value pair from the cache.
Parameters: |
|
---|
Returns: |
|
---|
Source code in llamarch/common/cache.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
|
exists(key)
Check if a key exists in the cache.
Parameters: |
|
---|
Returns: |
|
---|
Source code in llamarch/common/cache.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
get_all_values()
Retrieve all values stored in the cache.
Returns: |
|
---|
Source code in llamarch/common/cache.py
95 96 97 98 99 100 101 102 103 104 105 |
|