pip-services3-components-node
Version:
Component definitions for Pip.Services in Node.js
15 lines (14 loc) • 482 B
text/typescript
/**
* @module cache
*
* Todo: Rewrite the description
*
* @preferred
* Abstract implementation of various distributed caches. We can save an object
* to cache and retrieve it object by its key, using various implementations.
*/
export { CacheEntry } from './CacheEntry';
export { ICache } from './ICache';
export { NullCache } from './NullCache';
export { MemoryCache } from './MemoryCache';
export { DefaultCacheFactory } from './DefaultCacheFactory';