File tree 2 files changed +11
-30
lines changed
2 files changed +11
-30
lines changed Original file line number Diff line number Diff line change @@ -91,37 +91,18 @@ interface RequestScopedInMemoryCache {
91
91
set ( key : string , value : BlobType | null | Promise < BlobType | null > ) : void
92
92
}
93
93
94
- const noOpInMemoryCache : RequestScopedInMemoryCache = {
95
- get ( ) : undefined {
96
- // no-op
97
- } ,
98
- set ( ) {
99
- // no-op
100
- } ,
101
- }
102
-
103
- export const getRequestSpecificInMemoryCache = ( ) : RequestScopedInMemoryCache => {
94
+ export const getRequestScopedInMemoryCache = ( ) : RequestScopedInMemoryCache => {
104
95
const requestContext = getRequestContext ( )
105
- if ( ! requestContext ) {
106
- // Fallback to a no-op store if we can't find request context
107
- return noOpInMemoryCache
108
- }
109
-
110
96
const inMemoryLRUCache = getInMemoryLRUCache ( )
111
- if ( inMemoryLRUCache === null ) {
112
- return noOpInMemoryCache
113
- }
114
97
115
98
return {
116
99
get ( key ) {
117
- const inMemoryValue = inMemoryLRUCache . get ( `${ requestContext . requestID } :${ key } ` )
118
- if ( inMemoryValue === NullValue ) {
119
- return null
120
- }
121
- return inMemoryValue
122
- } ,
100
+ if ( ! requestContext ) return
101
+ const value = inMemoryLRUCache ?. get ( `${ requestContext . requestID } :${ key } ` )
102
+ return ( value === NullValue ) ? null : value
103
+ } ,
123
104
set ( key , value ) {
124
- inMemoryLRUCache . set ( `${ requestContext . requestID } :${ key } ` , value ?? NullValue )
125
- } ,
105
+ inMemoryLRUCache ? .set ( `${ requestContext ? .requestID } :${ key } ` , value ?? NullValue )
106
+ }
126
107
}
127
- }
108
+ }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { type BlobType } from '../../shared/blob-types.cjs'
7
7
import { getTracer } from '../handlers/tracer.cjs'
8
8
9
9
import { getRegionalBlobStore } from './regional-blob-store.cjs'
10
- import { getRequestSpecificInMemoryCache } from './request-scoped-in-memory-cache.cjs'
10
+ import { getRequestScopedInMemoryCache } from './request-scoped-in-memory-cache.cjs'
11
11
12
12
const encodeBlobKey = async ( key : string ) => {
13
13
const { encodeBlobKey : encodeBlobKeyImpl } = await import ( '../../shared/blobkey.js' )
@@ -22,7 +22,7 @@ export const getMemoizedKeyValueStoreBackedByRegionalBlobStore = (
22
22
23
23
return {
24
24
async get < T extends BlobType > ( key : string , otelSpanTitle : string ) : Promise < T | null > {
25
- const inMemoryCache = getRequestSpecificInMemoryCache ( )
25
+ const inMemoryCache = getRequestScopedInMemoryCache ( )
26
26
27
27
const memoizedValue = inMemoryCache . get ( key )
28
28
if ( typeof memoizedValue !== 'undefined' ) {
@@ -41,7 +41,7 @@ export const getMemoizedKeyValueStoreBackedByRegionalBlobStore = (
41
41
return getPromise
42
42
} ,
43
43
async set ( key : string , value : BlobType , otelSpanTitle : string ) {
44
- const inMemoryCache = getRequestSpecificInMemoryCache ( )
44
+ const inMemoryCache = getRequestScopedInMemoryCache ( )
45
45
46
46
inMemoryCache . set ( key , value )
47
47
You can’t perform that action at this time.
0 commit comments