* feat: add memory cache to boost performance * fix: tests * fix: logging * fix: missing commented stuff
6 lines
230 B
TypeScript
6 lines
230 B
TypeScript
import { MEMORY_STORAGE_SERVICE } from 'src/integrations/memory-storage/memory-storage.constants';
|
|
|
|
export const createMemoryStorageInjectionToken = (identifier: string) => {
|
|
return `${MEMORY_STORAGE_SERVICE}_${identifier}`;
|
|
};
|