cache
cache
¶
Caching functionality for cocapi
CacheManager
¶
CacheManager(default_ttl: int = 300)
Manages response caching with TTL support
Initialize cache manager
| PARAMETER | DESCRIPTION |
|---|---|
default_ttl
|
Default time-to-live in seconds (5 minutes)
TYPE:
|
Source code in cocapi/cache.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | |
enable
¶
enable() -> None
Enable caching
Source code in cocapi/cache.py
32 33 34 | |
disable
¶
disable() -> None
Disable caching
Source code in cocapi/cache.py
36 37 38 | |
is_enabled
¶
is_enabled() -> bool
Check if caching is enabled
Source code in cocapi/cache.py
40 41 42 | |
get
¶
get(
url: str, params: dict[str, Any] | None = None
) -> dict[str, Any] | None
Get cached response if available and not expired
| PARAMETER | DESCRIPTION |
|---|---|
url
|
Request URL
TYPE:
|
params
|
Request parameters
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict[str, Any] | None
|
Cached response data or None if not found/expired |
Source code in cocapi/cache.py
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 | |
set
¶
set(
url: str,
params: dict[str, Any] | None,
data: dict[str, Any],
ttl: int | None = None,
) -> None
Cache response data
| PARAMETER | DESCRIPTION |
|---|---|
url
|
Request URL
TYPE:
|
params
|
Request parameters
TYPE:
|
data
|
Response data to cache
TYPE:
|
ttl
|
Time-to-live in seconds (uses default if not specified)
TYPE:
|
Source code in cocapi/cache.py
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 106 107 | |
invalidate
¶
invalidate(
url: str, params: dict[str, Any] | None = None
) -> bool
Invalidate specific cached entry
| PARAMETER | DESCRIPTION |
|---|---|
url
|
Request URL
TYPE:
|
params
|
Request parameters
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
bool
|
True if entry was found and removed, False otherwise |
Source code in cocapi/cache.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
clear
¶
clear() -> int
Clear all cached entries
| RETURNS | DESCRIPTION |
|---|---|
int
|
Number of entries cleared |
Source code in cocapi/cache.py
129 130 131 132 133 134 135 136 137 138 139 | |
cleanup_expired
¶
cleanup_expired() -> int
Remove expired entries
| RETURNS | DESCRIPTION |
|---|---|
int
|
Number of expired entries removed |
Source code in cocapi/cache.py
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |
get_stats
¶
get_stats() -> dict[str, Any]
Get cache statistics
Source code in cocapi/cache.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | |
get_cache_info
¶
get_cache_info() -> dict[str, Any]
Get detailed cache information
Source code in cocapi/cache.py
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | |
set_default_ttl
¶
set_default_ttl(ttl: int) -> None
Set default TTL for new cache entries
Source code in cocapi/cache.py
211 212 213 | |
get_entry_info
¶
get_entry_info(
url: str, params: dict[str, Any] | None = None
) -> dict[str, Any] | None
Get information about a specific cache entry
Source code in cocapi/cache.py
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | |
extend_ttl
¶
extend_ttl(
url: str,
params: dict[str, Any] | None = None,
additional_seconds: int = 300,
) -> bool
Extend TTL for a specific cache entry
| PARAMETER | DESCRIPTION |
|---|---|
url
|
Request URL
TYPE:
|
params
|
Request parameters
TYPE:
|
additional_seconds
|
Seconds to add to current TTL
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
bool
|
True if entry was found and updated, False otherwise |
Source code in cocapi/cache.py
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | |
touch
¶
touch(
url: str, params: dict[str, Any] | None = None
) -> bool
Reset timestamp for cache entry (extends its life without changing TTL)
| PARAMETER | DESCRIPTION |
|---|---|
url
|
Request URL
TYPE:
|
params
|
Request parameters
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
bool
|
True if entry was found and touched, False otherwise |
Source code in cocapi/cache.py
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |