UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

74 lines (73 loc) 2.61 kB
import { StrongCache, WeakCache } from "@wry/caches"; const scheduledCleanup = new WeakSet(); function schedule(cache) { if (cache.size <= (cache.max || -1)) { return; } if (!scheduledCleanup.has(cache)) { scheduledCleanup.add(cache); setTimeout(() => { cache.clean(); scheduledCleanup.delete(cache); }, 100); } } /** * @internal * A version of WeakCache that will auto-schedule a cleanup of the cache when * a new item is added and the cache reached maximum size. * Throttled to once per 100ms. * * @privateRemarks * Should be used throughout the rest of the codebase instead of WeakCache, * with the notable exception of usage in `wrap` from `optimism` - that one * already handles cleanup and should remain a `WeakCache`. * * @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time. */ export const AutoCleanedWeakCache = function (max, dispose) { /* Some builds of `WeakCache` are function prototypes, some are classes. This library still builds with an ES5 target, so we can't extend the real classes. Instead, we have to use this workaround until we switch to a newer build target. */ const cache = new WeakCache(max, dispose); cache.set = function (key, value) { const ret = WeakCache.prototype.set.call(this, key, value); schedule(this); return ret; }; return cache; }; /** * @internal * A version of StrongCache that will auto-schedule a cleanup of the cache when * a new item is added and the cache reached maximum size. * Throttled to once per 100ms. * * @privateRemarks * Should be used throughout the rest of the codebase instead of StrongCache, * with the notable exception of usage in `wrap` from `optimism` - that one * already handles cleanup and should remain a `StrongCache`. * * @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time. */ export const AutoCleanedStrongCache = function (max, dispose) { /* Some builds of `StrongCache` are function prototypes, some are classes. This library still builds with an ES5 target, so we can't extend the real classes. Instead, we have to use this workaround until we switch to a newer build target. */ const cache = new StrongCache(max, dispose); cache.set = function (key, value) { const ret = StrongCache.prototype.set.call(this, key, value); schedule(this); return ret; }; return cache; }; //# sourceMappingURL=caches.js.map