A cache object that deletes the least-recently-used items.
A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run
Require hook for automatic V8 compile cache persistence
A simple key/value storage using files to persist the data
Require hook for automatic V8 compile cache persistence
Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies
TypeScript definitions for http-cache-semantics
LRU and FIFO caches for Client or Server
Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.
A generational pseudo-LRU cache with strict maximum size limits.
[](https://www.npmjs.com/package/@aws-sdk/endpoint-cache) [](https://www.npmjs.com/package/@aws-sdk/e
A super-fast, promise-based cache that reads and writes to the file-system.
An LRU cache of weak references
Create a full Content-Type header given a MIME type or extension and cache the result
No description provided.
Simple and fast NodeJS internal caching. Node internal in memory cache like memcached.
node-simple-lru-cache =====================
The time-based use-recency-unaware cousin of [`lru-cache`](http://npm.im/lru-cache)
High Performance In-Memory Cache for Node.js
TypeScript types for Apollo Server info.cacheControl
Cache Manager for Node.js
Opinionated, caching, retrying fetch client
Basic cache object for storing key-value pairs.
Memoize functions results using an lru-cache.
Wraps memcached with helpful methods
A simple file-system-based cache wrapper. The main method is 'with_cache( :cache_key=>'something_unique', :timeout_seconds=>(an integer) ){ (...) }' If the given cache key exists and has not timed out, it will return the cached value If not, it will * yield to the given block * store the result of the given block in the cache with the given key * return the result of the given block Required params: * :cache_key=>'some unique string that is valid in a filename' Optional params: * :timeout_seconds => (an integer - default 3600) * :cache_dir => (an absolute path - defaults to RAILS_ROOT/tmp/cache if RAILS_ROOT is defined, otherwise /tmp/cache ) Example usage: @stats_json = Itrigga::Cache::FileCache.with_cache(:cache_key=>'admin_stats.json', :timeout_seconds=>600){ /* some expensive remote API / slow IO call here /* }