rediscache 1.1.2__tar.gz → 1.1.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rediscache
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: Redis caching of functions evolving over time
5
5
  License: MIT
6
6
  Keywords: redis,performance,cache
@@ -224,9 +224,9 @@ poetry run webapp
224
224
 
225
225
  Entry points:
226
226
 
227
- - Call to long function with parameter value `20` and using the cache but waiting for a result: [link](http://localhost:9090/cached/20)
228
- - Call to long function with parameter value `20` without using the cache: [link](http://localhost:9090/direct/20)
229
- - Get the stats stored in Redis database: [link](http://localhost:9090/stats)
227
+ - Call to long function with parameter value `20` and using the cache but waiting for a result: [cached 20](http://localhost:9090/cached/20)
228
+ - Call to long function with parameter value `20` without using the cache: [direct 20](http://localhost:9090/direct/20)
229
+ - Get the stats stored in Redis database: [stats](http://localhost:9090/stats)
230
230
 
231
231
  There is also a `Nginx` configuration file to further test if with a load balancing of workers. It is useful to demonstrate that many workers can share efficiently the same instance of `Redis`.
232
232
 
@@ -196,9 +196,9 @@ poetry run webapp
196
196
 
197
197
  Entry points:
198
198
 
199
- - Call to long function with parameter value `20` and using the cache but waiting for a result: [link](http://localhost:9090/cached/20)
200
- - Call to long function with parameter value `20` without using the cache: [link](http://localhost:9090/direct/20)
201
- - Get the stats stored in Redis database: [link](http://localhost:9090/stats)
199
+ - Call to long function with parameter value `20` and using the cache but waiting for a result: [cached 20](http://localhost:9090/cached/20)
200
+ - Call to long function with parameter value `20` without using the cache: [direct 20](http://localhost:9090/direct/20)
201
+ - Get the stats stored in Redis database: [stats](http://localhost:9090/stats)
202
202
 
203
203
  There is also a `Nginx` configuration file to further test if with a load balancing of workers. It is useful to demonstrate that many workers can share efficiently the same instance of `Redis`.
204
204
 
@@ -1,7 +1,7 @@
1
1
  # For more details on this file see: https://python-poetry.org/docs/pyproject/
2
2
  [tool.poetry]
3
3
  name = "rediscache"
4
- version = "1.1.2"
4
+ version = "1.1.3"
5
5
  description = "Redis caching of functions evolving over time"
6
6
  authors = ["Pierre Cart-Grandjean <pcart-grandjean@amadeus.com>"]
7
7
  license = "MIT"
@@ -32,11 +32,11 @@ executiontime = "0.4.4"
32
32
  [tool.poetry.group.dev.dependencies]
33
33
  pylint = "^3.3.5"
34
34
  pytest = "^8.3.5"
35
- pdbpp = "^0.10.3"
35
+ pdbpp = "^0.11.6"
36
36
  mypy = "^1.15.0"
37
37
  black = "^25.1.0"
38
38
  pytest-cov = "^6.0.0"
39
- tornado = "^6.4.2"
39
+ tornado = "^6.5.1"
40
40
  pip-audit = "^2.8.0"
41
41
 
42
42
  [build-system]
File without changes