fastapi-cachex 0.1.4__py3-none-any.whl → 0.1.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fastapi-cachex might be problematic. Click here for more details.

@@ -1,2 +1,4 @@
1
1
  from .cache import cache as cache
2
+ from .dependencies import CacheBackend as CacheBackend
3
+ from .dependencies import get_cache_backend as get_cache_backend
2
4
  from .proxy import BackendProxy as BackendProxy
@@ -25,3 +25,26 @@ class BaseCacheBackend(ABC):
25
25
  @abstractmethod
26
26
  async def clear(self) -> None:
27
27
  """Clear all cached responses."""
28
+
29
+ @abstractmethod
30
+ async def clear_path(self, path: str, include_params: bool = False) -> int:
31
+ """Clear cached responses for a specific path.
32
+
33
+ Args:
34
+ path: The path to clear cache for
35
+ include_params: Whether to clear all parameter variations of the path
36
+
37
+ Returns:
38
+ Number of cache entries cleared
39
+ """
40
+
41
+ @abstractmethod
42
+ async def clear_pattern(self, pattern: str) -> int:
43
+ """Clear cached responses matching a pattern.
44
+
45
+ Args:
46
+ pattern: A glob pattern to match cache keys against (e.g., "/users/*")
47
+
48
+ Returns:
49
+ Number of cache entries cleared
50
+ """
@@ -1,4 +1,5 @@
1
1
  import ast
2
+ import warnings
2
3
  from typing import Optional
3
4
 
4
5
  from fastapi_cachex.backends.base import BaseCacheBackend
@@ -25,7 +26,7 @@ class MemcachedBackend(BaseCacheBackend):
25
26
  "pymemcache is not installed. Please install it with 'pip install pymemcache'"
26
27
  )
27
28
 
28
- self.client = HashClient(servers)
29
+ self.client = HashClient(servers, connect_timeout=5, timeout=5)
29
30
 
30
31
  async def get(self, key: str) -> Optional[ETagContent]:
31
32
  """Get value from cache.
@@ -72,3 +73,29 @@ class MemcachedBackend(BaseCacheBackend):
72
73
  async def clear(self) -> None:
73
74
  """Clear all values from cache."""
74
75
  self.client.flush_all()
76
+
77
+ async def clear_path(self, path: str, include_params: bool = False) -> int:
78
+ """Clear cached responses for a specific path."""
79
+ if include_params:
80
+ warnings.warn(
81
+ "Memcached backend does not support pattern-based key clearing. "
82
+ "The include_params option will have no effect.",
83
+ RuntimeWarning,
84
+ stacklevel=2,
85
+ )
86
+ return 0
87
+
88
+ # If we're not including params, we can just try to delete the exact path
89
+ if self.client.delete(path, noreply=False):
90
+ return 1
91
+ return 0
92
+
93
+ async def clear_pattern(self, pattern: str) -> int: # noqa: ARG002
94
+ """Clear cached responses matching a pattern."""
95
+ warnings.warn(
96
+ "Memcached backend does not support pattern matching. "
97
+ "Pattern-based cache clearing is not available.",
98
+ RuntimeWarning,
99
+ stacklevel=2,
100
+ )
101
+ return 0
@@ -53,6 +53,40 @@ class MemoryBackend(BaseCacheBackend):
53
53
  async with self.lock:
54
54
  self.cache.clear()
55
55
 
56
+ async def clear_path(self, path: str, include_params: bool = False) -> int:
57
+ """Clear cached responses for a specific path."""
58
+ cleared_count = 0
59
+ async with self.lock:
60
+ keys_to_delete = []
61
+ for key in self.cache:
62
+ cache_path, *params = key.split(":", 1)
63
+ if cache_path == path and (include_params or not params):
64
+ keys_to_delete.append(key)
65
+ cleared_count += 1
66
+
67
+ for key in keys_to_delete:
68
+ del self.cache[key]
69
+
70
+ return cleared_count
71
+
72
+ async def clear_pattern(self, pattern: str) -> int:
73
+ """Clear cached responses matching a pattern."""
74
+ import fnmatch
75
+
76
+ cleared_count = 0
77
+ async with self.lock:
78
+ keys_to_delete = []
79
+ for key in self.cache:
80
+ cache_path = key.split(":", 1)[0] # Get path part only
81
+ if fnmatch.fnmatch(cache_path, pattern):
82
+ keys_to_delete.append(key)
83
+ cleared_count += 1
84
+
85
+ for key in keys_to_delete:
86
+ del self.cache[key]
87
+
88
+ return cleared_count
89
+
56
90
  async def _cleanup_task_impl(self) -> None:
57
91
  try:
58
92
  while True:
@@ -0,0 +1,14 @@
1
+ from typing import Annotated
2
+
3
+ from fastapi import Depends
4
+
5
+ from fastapi_cachex.backends.base import BaseCacheBackend
6
+ from fastapi_cachex.proxy import BackendProxy
7
+
8
+
9
+ def get_cache_backend() -> BaseCacheBackend:
10
+ """Dependency to get the current cache backend instance."""
11
+ return BackendProxy.get_backend()
12
+
13
+
14
+ CacheBackend = Annotated[BaseCacheBackend, Depends(get_cache_backend)]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-cachex
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A caching library for FastAPI with support for Cache-Control, ETag, and multiple backends.
5
5
  Author-email: Allen <s96016641@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -0,0 +1,17 @@
1
+ fastapi_cachex/__init__.py,sha256=_g7ewsAAjvbeMoDOttsfSD-G5ebPCN7MVPl-p2fY0tU,202
2
+ fastapi_cachex/cache.py,sha256=b-55IR0kdcVj4yUk8dplqqUy2avW49P-oI01ART9pyU,9174
3
+ fastapi_cachex/dependencies.py,sha256=K4565NSU7j8ktqe5ib_hs-fBB6IbIrM0nw6pTHpjLc4,385
4
+ fastapi_cachex/directives.py,sha256=kJCmsbyQ89m6tsWo_c1vVJn3rk0pD5JZaY8xtNLcRh0,530
5
+ fastapi_cachex/exceptions.py,sha256=coYct4u6uK_pdjetUWDwM5OUCfhql0OkTECynMRUq4M,379
6
+ fastapi_cachex/proxy.py,sha256=vFShY7_xp4Sh1XU9dJzsBv2ICN8Rtwx6g1qCcCvmdf8,810
7
+ fastapi_cachex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ fastapi_cachex/types.py,sha256=YkXlBARIr5lHQE4PYQrwXjEoLHdz9CIjfX7V-S9N8p0,328
9
+ fastapi_cachex/backends/__init__.py,sha256=U65JrCeh1eusklqUfV5yvZGK7Kfy5RctzfVrRfFPuaI,166
10
+ fastapi_cachex/backends/base.py,sha256=oBoHUaejZNQ_ex1n1YrpUP4CU94w2TbsXd6qau0F_T8,1383
11
+ fastapi_cachex/backends/memcached.py,sha256=vy7isgu2qW2odBPTl8Q8ulqUo36KIsnZ3YVCr3sflfc,3211
12
+ fastapi_cachex/backends/memory.py,sha256=4TBdvxnjMY0BnN1Gjr93rJllWJjU055RxG12QJixrrM,3611
13
+ fastapi_cachex-0.1.5.dist-info/licenses/LICENSE,sha256=asJkHbd10YDSnjeAOIlKafh7E_exwtKXY5rA-qc_Mno,11339
14
+ fastapi_cachex-0.1.5.dist-info/METADATA,sha256=OoxnkzzbW8iLikvibtF0Oud0xEUPwZDx9XIGMVNqmLM,4669
15
+ fastapi_cachex-0.1.5.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
16
+ fastapi_cachex-0.1.5.dist-info/top_level.txt,sha256=97FfG5FDycd3hks-_JznEr-5lUOgg8AZd8pqK5imWj0,15
17
+ fastapi_cachex-0.1.5.dist-info/RECORD,,
@@ -1,16 +0,0 @@
1
- fastapi_cachex/__init__.py,sha256=K8zRD7pEOo77Ged7SJQ-BFNMe6Pnz8yM5ePFq97nI_s,82
2
- fastapi_cachex/cache.py,sha256=b-55IR0kdcVj4yUk8dplqqUy2avW49P-oI01ART9pyU,9174
3
- fastapi_cachex/directives.py,sha256=kJCmsbyQ89m6tsWo_c1vVJn3rk0pD5JZaY8xtNLcRh0,530
4
- fastapi_cachex/exceptions.py,sha256=coYct4u6uK_pdjetUWDwM5OUCfhql0OkTECynMRUq4M,379
5
- fastapi_cachex/proxy.py,sha256=vFShY7_xp4Sh1XU9dJzsBv2ICN8Rtwx6g1qCcCvmdf8,810
6
- fastapi_cachex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- fastapi_cachex/types.py,sha256=YkXlBARIr5lHQE4PYQrwXjEoLHdz9CIjfX7V-S9N8p0,328
8
- fastapi_cachex/backends/__init__.py,sha256=U65JrCeh1eusklqUfV5yvZGK7Kfy5RctzfVrRfFPuaI,166
9
- fastapi_cachex/backends/base.py,sha256=eGfn0oZNQ8_drNHz4ZtqBVFSxKxEwW8y4ojw5iShgLQ,707
10
- fastapi_cachex/backends/memcached.py,sha256=g3184fHpFK7LH1UY9xfzRszBBzqmzeaLG806B5MsZDM,2190
11
- fastapi_cachex/backends/memory.py,sha256=7KFSn5e1CvDzflZ5zqUPDQsBf6emcV0ob_tCsLQcDLw,2445
12
- fastapi_cachex-0.1.4.dist-info/licenses/LICENSE,sha256=asJkHbd10YDSnjeAOIlKafh7E_exwtKXY5rA-qc_Mno,11339
13
- fastapi_cachex-0.1.4.dist-info/METADATA,sha256=6qK6F6Pi338JYWN0NEv5SnR8gN4eJaXyFntNmFAu57s,4669
14
- fastapi_cachex-0.1.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
15
- fastapi_cachex-0.1.4.dist-info/top_level.txt,sha256=97FfG5FDycd3hks-_JznEr-5lUOgg8AZd8pqK5imWj0,15
16
- fastapi_cachex-0.1.4.dist-info/RECORD,,