Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | import { Injectable } from '@nestjs/common'; import { CacheNamespace } from './cache-namespace.registry'; @Injectable() export class CacheKeyBuilder { private readonly ENV_PREFIX = process.env.NODE_ENV ?? 'dev'; /** * Build a standard tenant-scoped cache key. * Format: {env}:{namespace}:{tenantId}:{qualifier} */ build( namespace: CacheNamespace, tenantId: string, qualifier: string, ): string { return `${this.ENV_PREFIX}:${namespace}:${tenantId}:${qualifier}`; } /** * Build a user-scoped cache key. * Format: {env}:{namespace}:{tenantId}:user:{userId}:{qualifier} */ buildUserKey( namespace: CacheNamespace, tenantId: string, userId: string, qualifier: string, ): string { return `${this.ENV_PREFIX}:${namespace}:${tenantId}:user:${userId}:${qualifier}`; } /** * Build a global (non-tenant) cache key for platform-wide data. */ buildGlobal(namespace: CacheNamespace, qualifier: string): string { return `${this.ENV_PREFIX}:${namespace}:global:${qualifier}`; } /** * Pattern to match and invalidate all keys under a given tenant + namespace. */ tenantPattern(namespace: CacheNamespace, tenantId: string): string { return `${this.ENV_PREFIX}:${namespace}:${tenantId}:*`; } /** * Pattern to match all user keys under a given tenant + namespace. */ userPattern( namespace: CacheNamespace, tenantId: string, userId: string, ): string { return `${this.ENV_PREFIX}:${namespace}:${tenantId}:user:${userId}:*`; } } |