Options passed to the memorize factory.
const cache = memorize({ ttl: 60_000 }); // cache entries live for 60 seconds Copy
const cache = memorize({ ttl: 60_000 }); // cache entries live for 60 seconds
Optional
Default time-to-live for every cached entry, in milliseconds. Omit to cache indefinitely. Can be overridden per-route via MemorizeCallOptions.
Options passed to the memorize factory.
Example