@@ -6,10 +6,12 @@ import { BasicCommandParser } from './parser';
6
6
type CachingClient = RedisClient < any , any , any , any , any > ;
7
7
type CmdFunc = ( ) => Promise < ReplyUnion > ;
8
8
9
+ type EvictionPolicy = "LRU" | "FIFO"
10
+
9
11
export interface ClientSideCacheConfig {
10
12
ttl ?: number ;
11
13
maxEntries ?: number ;
12
- lru ?: boolean ;
14
+ evictPolocy ?: EvictionPolicy ;
13
15
}
14
16
15
17
type CacheCreator = {
@@ -107,7 +109,7 @@ export class BasicClientSideCache extends ClientSideCacheProvider {
107
109
this . #keyToCacheKeySetMap = new Map < string , Set < string > > ( ) ;
108
110
this . ttl = config ?. ttl ?? 0 ;
109
111
this . maxEntries = config ?. maxEntries ?? 0 ;
110
- this . lru = config ?. lru ?? true ;
112
+ this . lru = config ?. evictPolocy !== "FIFO"
111
113
}
112
114
113
115
/* logic of how caching works:
@@ -165,6 +167,7 @@ export class BasicClientSideCache extends ClientSideCacheProvider {
165
167
if ( cacheEntry . validate ( ) ) { // on error, have to remove promise from cache
166
168
this . delete ( cacheKey ! ) ;
167
169
}
170
+
168
171
throw err ;
169
172
}
170
173
}
@@ -217,25 +220,21 @@ export class BasicClientSideCache extends ClientSideCacheProvider {
217
220
this . emit ( 'invalidate' , key ) ;
218
221
}
219
222
220
- override clear ( reset = true ) {
223
+ override clear ( resetStats = true ) {
221
224
this . #cacheKeyToEntryMap. clear ( ) ;
222
225
this . #keyToCacheKeySetMap. clear ( ) ;
223
- if ( reset ) {
226
+ if ( resetStats ) {
224
227
this . #cacheHits = 0 ;
225
228
this . #cacheMisses = 0 ;
226
229
}
227
230
}
228
231
229
- get ( cacheKey ?: string | undefined ) {
230
- if ( cacheKey === undefined ) {
231
- return undefined
232
- }
233
-
232
+ get ( cacheKey : string ) {
234
233
const val = this . #cacheKeyToEntryMap. get ( cacheKey ) ;
235
234
236
235
if ( val && ! val . validate ( ) ) {
237
236
this . delete ( cacheKey ) ;
238
- this . emit ( "invalidate " , cacheKey ) ;
237
+ this . emit ( "cache-evict " , cacheKey ) ;
239
238
240
239
return undefined ;
241
240
}
@@ -263,6 +262,7 @@ export class BasicClientSideCache extends ClientSideCacheProvider {
263
262
set ( cacheKey : string , cacheEntry : ClientSideCacheEntry , keys : Array < RedisArgument > ) {
264
263
let count = this . #cacheKeyToEntryMap. size ;
265
264
const oldEntry = this . #cacheKeyToEntryMap. get ( cacheKey ) ;
265
+
266
266
if ( oldEntry ) {
267
267
count -- ; // overwriting, so not incrementig
268
268
oldEntry . invalidate ( ) ;
@@ -419,11 +419,8 @@ class PooledClientSideCacheEntryPromise extends ClientSideCacheEntryPromise {
419
419
420
420
override validate ( ) : boolean {
421
421
let ret = super . validate ( ) ;
422
- if ( this . #creator) {
423
- ret = ret && this . #creator. client . isReady && this . #creator. client . socketEpoch == this . #creator. epoch
424
- }
425
-
426
- return ret ;
422
+
423
+ return ret && this . #creator. client . isReady && this . #creator. client . socketEpoch == this . #creator. epoch
427
424
}
428
425
}
429
426
0 commit comments