transitory
Version:
In-memory cache with high hit rates via LFU eviction. Supports time-based expiration, automatic loading and metrics.
14 lines • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractCache = void 0;
/**
* Abstract class for all cache implementations. This exists so that its
* possible to use instanceof with caches like: `obj instanceof AbstractCache`.
*/
var AbstractCache = /** @class */ (function () {
function AbstractCache() {
}
return AbstractCache;
}());
exports.AbstractCache = AbstractCache;
//# sourceMappingURL=AbstractCache.js.map