We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09cd234 commit e10379dCopy full SHA for e10379d
packages/bentocache/src/cache/cache_entry/cache_entry_options.ts
@@ -59,14 +59,18 @@ export function createCacheEntryOptions(
59
* Logical TTL is when the value is considered expired
60
* but still can be in the cache ( Grace period )
61
*/
62
- logicalTtl,
+ get logicalTtl() {
63
+ return logicalTtl
64
+ },
65
66
/**
67
* Physical TTL is the time when value will be automatically
68
* removed from the cache. This is the Grace period
69
* duration
70
- physicalTtl,
71
+ get physicalTtl() {
72
+ return physicalTtl
73
74
75
76
* Timeouts for the cache operations
0 commit comments