Neocache is a blazingly fast, minimal cache library, up to 31% faster than other popular cache libraries.
https://www.npmjs.com/package/neocache
- Fastest overall SET operations - 21% faster than lru-cache at 100K items
- Best GET performance - 31% faster than lru-cache and 30% faster than quick-lru at 100K items
- Superior LRU eviction - 26% faster than lru-cache and 12% faster than quick-lru
- Best mixed operations - 13% faster than lru-cache and 11% faster than quick-lru
- Most consistent performance across all operation sizes from 100K to 10M items
- Minimal memory footprint with excellent GC behavior
See benchmarking for details.
- Key-value based caching
- Multiple eviction strategy
- Custom expire time
- LRU (Least Recently Used)
- Configurable max size
- Built-in benchmarking
import Neocache from 'neocache';
// For CommonJS
// const Neocache = require('neocache').default;
const cache = Neocache.instance;
const cacheId = 'customCacheId';
let cachedItem = cache.get(cacheId); // returns null, since the cache starts out as empty
cachedItem = cache.get(cacheId, async () => {
// Put your data retrieval logic here.
// This function is executed when cache doesn't exist or expired.
const value = await fetchDataFromDatabase('itemId');
return value;
});
// Later...
// Although the data retriving function is provided, it is not called because
// the cached value is used.
cachedItem = cache.get(cachedId, async () => {
// Code is not executed here
const value = await fetchDataFromDatabase('itemId');
return value;
});
import Neocache from 'neocache';
// For CommonJS
// const Neocache = require('neocache').default;
// You can create multiple instance of Neocache instead of using the default.
const myCache = new Neocache();
const cacheId = 'customCacheId';
const cachedItem = myCache.get(cacheId, async () => {
// ...
return value;
});
import Neocache from 'neocache';
// You can also use custom configuration for expiration time and max size
const myCache = new Neocache({
// Default time until items expire (in milliseconds)
defaultExpireTimeMs: 3600000, // 1 hour
// How often to check for and remove expired items (in milliseconds)
purgeIntervalMs: 60000, // 1 minute
// Maximum number of items to store in cache before LRU eviction
maxSize: 1000
});
The cache uses a Least Recently Used (LRU) eviction strategy. When the cache reaches its maximum size, the least recently used items will be evicted to make room for new items.
To enable LRU eviction, specify the maxSize
option when creating a cache instance:
const cache = new Neocache({
maxSize: 1000 // Maximum 1000 items in cache
});
Neocache comes with built-in benchmarking capabilities. To run benchmarks:
# Run comparative benchmarks against other popular cache libraries
npm run benchmark
# Run the original Neocache-only benchmarks
npm run benchmark:original
The comparative benchmark compares Neocache against other popular TypeScript/JavaScript cache libraries:
This will output performance metrics for various operations:
- SET operations: Measures performance of setting items in the cache
- GET operations: Measures performance of retrieving items from the cache
- LRU eviction: Measures performance when adding items to a full cache, triggering LRU eviction
- Mixed operations: Measures performance with a random mix of get and set operations
Sample benchmark results:
SET OPERATIONS
─────────────────────────────────────────────────────────
Library | 100,000 items | 1,000,000 items | 10,000,000 items
─────────────────────────────────────────────────────────
Neocache | 2.58M ops/sec | 4.89M ops/sec | 4.84M ops/sec 👈 Fastest overall
lru-cache | 2.13M ops/sec | 3.88M ops/sec | 3.87M ops/sec
quick-lru | 3.82M ops/sec | 4.57M ops/sec | 4.50M ops/sec
GET OPERATIONS
─────────────────────────────────────────────────────────
Library | 100,000 items | 1,000,000 items | 10,000,000 items
─────────────────────────────────────────────────────────
Neocache | 4.41M ops/sec | 4.95M ops/sec | 4.95M ops/sec 👈 Best overall
lru-cache | 3.37M ops/sec | 4.14M ops/sec | 4.39M ops/sec
quick-lru | 3.38M ops/sec | 4.34M ops/sec | 4.37M ops/sec
MIXED OPERATIONS (500,000 random get/set operations)
─────────────────────────────────────────────────────────
Library | Performance
─────────────────────────────
Neocache | 3.82M ops/sec 👈 Best mixed operations
lru-cache | 3.37M ops/sec
quick-lru | 3.45M ops/sec
LRU EVICTION (adding 500,000 items to a cache of 10,000 items)
─────────────────────────────────────────────────────────
Library | Performance
─────────────────────────────
Neocache | 3.80M ops/sec 👈 Best LRU performance
lru-cache | 3.02M ops/sec
quick-lru | 3.40M ops/sec
Note: Actual performance will vary based on your system. Run the benchmarks on your own machine for accurate results.