UNPKG

cachly

Version:

Type-safe, production-ready in-memory cache system for Node.js and TypeScript with advanced features.

19 lines 642 B
import { Cachly } from './Cachly'; export { Cachly } from './Cachly'; export * from './types'; export * from './utils/compression'; export * from './utils/CircuitBreaker'; export * from './utils/Partitioning'; export * from './utils/Monitoring'; export * from './adapters/FSAdapter'; export * from './decorators'; export * from './middleware/express'; export * from './cli'; export declare class CachlyNamespace { private static namespaces; static namespace(name: string, config?: any): Cachly; static create(config?: any): Cachly; static clearAll(): void; } export default CachlyNamespace; //# sourceMappingURL=index.d.ts.map