gcache 2.0.2__tar.gz → 2.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.
- {gcache-2.0.2 → gcache-2.0.4}/PKG-INFO +17 -9
- {gcache-2.0.2 → gcache-2.0.4}/README.md +14 -6
- {gcache-2.0.2 → gcache-2.0.4}/pyproject.toml +5 -5
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/__init__.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/__init__.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/cache_interface.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/constants.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/event_loop_thread.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/local_cache.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/metrics.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/noop_cache.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/redis_cache.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/state.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/_internal/wrappers.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/config.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/exceptions.py +0 -0
- {gcache-2.0.2 → gcache-2.0.4}/src/gcache/gcache.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: gcache
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: Fine grained caching.
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Galileo Technologies Inc.
|
|
@@ -21,21 +21,29 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
22
|
Classifier: Typing :: Typed
|
|
23
23
|
Requires-Dist: cachetools (>=5.5.2)
|
|
24
|
-
Requires-Dist: prometheus-client (>=0.
|
|
24
|
+
Requires-Dist: prometheus-client (>=0.24.1,<0.25.0)
|
|
25
25
|
Requires-Dist: pydantic (>=2.11.4,<3.0.0)
|
|
26
26
|
Requires-Dist: redis (>=5.0.0)
|
|
27
27
|
Requires-Dist: types-cachetools (>=6.2.0.20250827,<7.0.0.0)
|
|
28
|
-
Requires-Dist: uvloop (>=0.
|
|
28
|
+
Requires-Dist: uvloop (>=0.22.1,<0.23.0)
|
|
29
29
|
Project-URL: Homepage, https://github.com/rungalileo/gcache
|
|
30
30
|
Project-URL: Repository, https://github.com/rungalileo/gcache
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
<p align="center">
|
|
34
|
+
<picture>
|
|
35
|
+
<source media="(prefers-color-scheme: dark)" srcset="assets/logo-wordmark.png" />
|
|
36
|
+
<source media="(prefers-color-scheme: light)" srcset="assets/logo-wordmark-light.png" />
|
|
37
|
+
<img src="assets/logo-wordmark.png" alt="GCache" width="520" />
|
|
38
|
+
</picture>
|
|
39
|
+
</p>
|
|
40
|
+
|
|
41
|
+
<p align="center">
|
|
42
|
+
<a href="https://badge.fury.io/py/gcache"><img src="https://badge.fury.io/py/gcache.svg" alt="PyPI version" /></a>
|
|
43
|
+
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT" /></a>
|
|
44
|
+
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="Python 3.10+" /></a>
|
|
45
|
+
<a href="https://codecov.io/gh/rungalileo/gcache"><img src="https://codecov.io/gh/rungalileo/gcache/graph/badge.svg" alt="codecov" /></a>
|
|
46
|
+
</p>
|
|
39
47
|
|
|
40
48
|
A caching library built for moving fast without breaking things. GCache lets you rapidly add new caching use cases while maintaining structure and runtime control guardrails—so you can ramp up gradually, kill a bad cache instantly, and have full observability into what's cached across your system.
|
|
41
49
|
|
|
@@ -1,9 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<picture>
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="assets/logo-wordmark.png" />
|
|
4
|
+
<source media="(prefers-color-scheme: light)" srcset="assets/logo-wordmark-light.png" />
|
|
5
|
+
<img src="assets/logo-wordmark.png" alt="GCache" width="520" />
|
|
6
|
+
</picture>
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://badge.fury.io/py/gcache"><img src="https://badge.fury.io/py/gcache.svg" alt="PyPI version" /></a>
|
|
11
|
+
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT" /></a>
|
|
12
|
+
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="Python 3.10+" /></a>
|
|
13
|
+
<a href="https://codecov.io/gh/rungalileo/gcache"><img src="https://codecov.io/gh/rungalileo/gcache/graph/badge.svg" alt="codecov" /></a>
|
|
14
|
+
</p>
|
|
7
15
|
|
|
8
16
|
A caching library built for moving fast without breaking things. GCache lets you rapidly add new caching use cases while maintaining structure and runtime control guardrails—so you can ramp up gradually, kill a bad cache instantly, and have full observability into what's cached across your system.
|
|
9
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "gcache"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.4"
|
|
4
4
|
description = "Fine grained caching."
|
|
5
5
|
authors = [{ name = "Galileo Technologies Inc.", email = "team@rungalileo.io" }]
|
|
6
6
|
readme = "README.md"
|
|
@@ -31,18 +31,18 @@ repository = "https://github.com/rungalileo/gcache"
|
|
|
31
31
|
[tool.poetry.dependencies]
|
|
32
32
|
python = "^3.10"
|
|
33
33
|
pydantic = "^2.11.4"
|
|
34
|
-
prometheus-client = "^0.
|
|
34
|
+
prometheus-client = "^0.24.1"
|
|
35
35
|
cachetools = ">=5.5.2"
|
|
36
36
|
types-cachetools = "^6.2.0.20250827"
|
|
37
37
|
redis = ">=5.0.0"
|
|
38
|
-
uvloop = "^0.
|
|
38
|
+
uvloop = "^0.22.1"
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
[tool.poetry.group.test.dependencies]
|
|
42
42
|
pytest = "^8.4.1"
|
|
43
43
|
pytest-xdist = "^3.6.1"
|
|
44
|
-
coverage = "^7.
|
|
45
|
-
pytest-cov = "^
|
|
44
|
+
coverage = "^7.13.5"
|
|
45
|
+
pytest-cov = "^7.0.0"
|
|
46
46
|
pytest-asyncio = "^1.1.0"
|
|
47
47
|
redislite = "^6.2.912183"
|
|
48
48
|
|
|
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
|