nb-cache 0.3__tar.gz → 0.4__tar.gz
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.
- {nb_cache-0.3 → nb_cache-0.4}/PKG-INFO +3 -8
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache.egg-info/PKG-INFO +4 -9
- {nb_cache-0.3 → nb_cache-0.4}/pyproject.toml +2 -1
- {nb_cache-0.3 → nb_cache-0.4}/LICENSE +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/README.md +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/__init__.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/_compat.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/backends/__init__.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/backends/base.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/backends/dual.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/backends/memory.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/backends/redis.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/condition.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/__init__.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/bloom.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/cache.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/circuit_breaker.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/early.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/failover.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/hit.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/iterator.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/locked.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/rate_limit.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/decorators/soft.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/exceptions.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/helpers.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/key.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/middleware.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/serialize.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/tags.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/transaction.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/ttl.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache/wrapper.py +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache.egg-info/SOURCES.txt +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache.egg-info/dependency_links.txt +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache.egg-info/requires.txt +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/nb_cache.egg-info/top_level.txt +0 -0
- {nb_cache-0.3 → nb_cache-0.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: nb_cache
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4
|
|
4
4
|
Summary: `nb_cache` 不仅是一个基础的缓存装饰器,它在彻底抹平 Python 同步与异步代码差异的同时,开箱即用地提供了内存/Redis双层缓存、防击穿、防雪崩、限流与熔断等企业级高可用特性。
|
|
5
5
|
Author: ydf0509
|
|
6
6
|
Project-URL: Homepage, https://github.com/ydf0509/nb_cache
|
|
@@ -18,18 +18,13 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
22
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
23
|
Requires-Python: >=3.6
|
|
23
24
|
Description-Content-Type: text/markdown
|
|
24
25
|
Provides-Extra: redis
|
|
25
|
-
Requires-Dist: redis>=3.0; extra == "redis"
|
|
26
26
|
Provides-Extra: speedup
|
|
27
|
-
Requires-Dist: xxhash; extra == "speedup"
|
|
28
|
-
Requires-Dist: hiredis; extra == "speedup"
|
|
29
27
|
Provides-Extra: all
|
|
30
|
-
Requires-Dist: redis>=3.0; extra == "all"
|
|
31
|
-
Requires-Dist: xxhash; extra == "all"
|
|
32
|
-
Requires-Dist: hiredis; extra == "all"
|
|
33
28
|
|
|
34
29
|
|
|
35
30
|
# 🚀 nb_cache: Python 缓存界的“瑞士军刀”
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
2
|
-
Name:
|
|
3
|
-
Version: 0.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: nb-cache
|
|
3
|
+
Version: 0.4
|
|
4
4
|
Summary: `nb_cache` 不仅是一个基础的缓存装饰器,它在彻底抹平 Python 同步与异步代码差异的同时,开箱即用地提供了内存/Redis双层缓存、防击穿、防雪崩、限流与熔断等企业级高可用特性。
|
|
5
5
|
Author: ydf0509
|
|
6
6
|
Project-URL: Homepage, https://github.com/ydf0509/nb_cache
|
|
@@ -18,18 +18,13 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
22
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
23
|
Requires-Python: >=3.6
|
|
23
24
|
Description-Content-Type: text/markdown
|
|
24
25
|
Provides-Extra: redis
|
|
25
|
-
Requires-Dist: redis>=3.0; extra == "redis"
|
|
26
26
|
Provides-Extra: speedup
|
|
27
|
-
Requires-Dist: xxhash; extra == "speedup"
|
|
28
|
-
Requires-Dist: hiredis; extra == "speedup"
|
|
29
27
|
Provides-Extra: all
|
|
30
|
-
Requires-Dist: redis>=3.0; extra == "all"
|
|
31
|
-
Requires-Dist: xxhash; extra == "all"
|
|
32
|
-
Requires-Dist: hiredis; extra == "all"
|
|
33
28
|
|
|
34
29
|
|
|
35
30
|
# 🚀 nb_cache: Python 缓存界的“瑞士军刀”
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nb_cache"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.4"
|
|
8
8
|
description = "`nb_cache` 不仅是一个基础的缓存装饰器,它在彻底抹平 Python 同步与异步代码差异的同时,开箱即用地提供了内存/Redis双层缓存、防击穿、防雪崩、限流与熔断等企业级高可用特性。"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
# license = {text = "MIT"}
|
|
@@ -26,6 +26,7 @@ classifiers = [
|
|
|
26
26
|
"Programming Language :: Python :: 3.11",
|
|
27
27
|
"Programming Language :: Python :: 3.12",
|
|
28
28
|
"Programming Language :: Python :: 3.13",
|
|
29
|
+
"Programming Language :: Python :: 3.14",
|
|
29
30
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
30
31
|
# "Topic :: System :: Caching",
|
|
31
32
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|