bentocache
Version:
Multi-tier cache module for Node.js. Redis, Upstash, CloudfareKV, File, in-memory and others drivers
24 lines (23 loc) • 385 B
JavaScript
// src/types/bus.ts
var CacheBusMessageType = {
/**
* An item was set in the cache
*/
Set: "set",
/**
* Whole cache was cleared
*/
Clear: "clear",
/**
* An item was deleted from the cache
*/
Delete: "delete",
/**
* An item was logically expired
*/
Expire: "expire"
};
export {
CacheBusMessageType
};
//# sourceMappingURL=chunk-HVHH5I26.js.map