File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ BloomFilter is cleared automatically when requests count == size.
249
249
## Cache Storage
250
250
251
251
#### Local Storage
252
- Local storage uses dictionary to store data. A policy is used to evicte keys when cache is full.
252
+ Local storage uses dictionary to store data. A policy is used to evict keys when cache is full.
253
253
``` python
254
254
# lru policy
255
255
Storage(url = " local://lru" , size = 10000 )
@@ -264,7 +264,7 @@ Parameters:
264
264
- ` lru `
265
265
- ` tlfu ` : TinyLfu policy, see https://arxiv.org/pdf/1512.00727.pdf
266
266
267
- - ` size ` : size of the storage. Policy will be used to evicte key when cache is full.
267
+ - ` size ` : size of the storage. Policy will be used to evict key when cache is full.
268
268
269
269
#### Redis Storage
270
270
``` python
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ Parameters:
255
255
- ` lru `
256
256
- ` tlfu ` : TinyLfu policy, see https://arxiv.org/pdf/1512.00727.pdf
257
257
258
- - ` size ` : size of the storage. Policy will be used to evicte key when cache is full.
258
+ - ` size ` : size of the storage. Policy will be used to evict key when cache is full.
259
259
260
260
#### Redis Storage
261
261
``` python
You can’t perform that action at this time.
0 commit comments