(drId)
| 4 | const CACHE_SCHEMA_VERSION = runtimeCache.RUNTIME_CACHE_CONFIG?.cacheSchemaVersion || "1"; |
| 5 | |
| 6 | const cacheKey = (drId) => `${CACHE_PREFIX}:v${CACHE_SCHEMA_VERSION}:${drId}`; |
| 7 | |
| 8 | const deserialize = (rawValue) => { |
| 9 | if (!rawValue) return false; |