
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
redis-cache-manager
Advanced tools
Use Redis to easily cache items and subscribing to them using Redis built in pub/sub.
run npm install redis-cache-manager --save
import { RedisCacheManager } from 'redis-cache-manager';
// Constructor expects same config as redis client type (with redis defaults) with namespace property added for scoping
const rcm = new RedisCacheManager({namespace: 'my-app-name'});
Simple keys take the entire value given and pass it to JSON.stringify - stored as key - string pair in Redis
// Currently set only uses JSON.stringify to create a key and a string of stored values.
rcm.set('my-key', {});
// Optionally you can pass a listener function to subscribe to changes in object (for every 'set' called on key)
// The data passed in the listener is the same type as the object passed.
rcm.set('my-key', {}, (myNewlySetData) => {
// Do something with myNewlySetData
});
// Currently set only uses JSON.parse to parse data from simple redis key and use in code.
const myData = rcm.get('my-key');
// Use myData
// The method expects an array of objects, using the callback to create a unique identifier (lodash style).
// The method creates a list under my-namespace:my-key and hm objects with params stringified in each my-namespace:my-key:uniqueId
rcm.setAll('my-key', dataArray, (singleObject) => singleObject.uniqueId)
.then(redisClient => {
// You can do something with the redis client object
})
.catch(err => {
// Handle error
});
// Looks for a list of keys under 'my-namespace:my-key' and gets all objects.
rcm.getAll('my-key')
.then(data => {
// You can do something with the data
})
.catch(err => {
// Handle error
});
// Looks for a list of simple keys under 'my-namespace:my-key' and gets all objects matching ids.
rcm.getByIds('my-key', ['id1', 'id2', 'id3'])
.then(data => {
// You can do something with the data
})
.catch(err => {
// Handle error
});
Saved as hashes in Redis - none atomic values (arrays, objects etc..) are converted to string using JSON.stringify before stored
// Currently uses JSON.stringify on every parameter of given object in the array.
// The method expects an array of objects, using the callback to create a unique identifier (lodash style).
// The method creates a list under my-namespace:my-key and hm objects with params stringified in each my-namespace:my-key:uniqueId
rcm.hmSetAll('my-key', dataArray, (singleObject) => singleObject.uniqueId)
.then(redisClient => {
// You can do something with the redis client object
})
.catch(err => {
// Handle error
});
// Currently uses JSON.stringify on every parameter of given object.
// The method expects an object, using the callback to create a unique identifier (lodash style).
// The method creates hm object with params stringified in my-namespace:my-key:uniqueId
rcm.hmSetOne('my-key', (singleObject) => singleObject.uniqueId, singleObject)
.then(redisClient => {
// You can do something with the redis client object
})
.catch(err => {
// Handle error
});
// Looks for a list of hm keys under 'my-namespace:my-key' and gets all objects.
rcm.hmGetAll('my-key')
.then(data => {
// You can do something with the data
})
.catch(err => {
// Handle error
});
// Looks for a list of hm keys under 'my-namespace:my-key' and gets all objects matching ids.
rcm.hmGetByIds('my-key', ['id1', 'id2', 'id3'])
.then(data => {
// You can do something with the data
})
.catch(err => {
// Handle error
});
You can set and get indexes (stored as sets) based on field names - can be used for quick filtering of data.
// Sets indexes based on each item of data array and specific fields setting it in redis as namespace:indexes:indexKey:fieldName:someFieldValue : listOfIds
rcm.indexByFields(indexKey, dataArray, fieldNames, (singleObject) => singleObject.uniqueId)
.then(done => {
// Indexes set correctly
})
.catch(err => {
// Handle error
});
// Gets all the indexed under a certain indexKey based on field names
rcm.getIndexByFields(indexKey, fieldNames)
.then(data => {
// Returns { [indexKey]: listOfIds } you can use for fetching ids or querying DB
})
.catch(err => {
// Handle error
});
// Sets indexes based on each item of data array and specific fields setting it in redis as namespace:indexes:indexKey:fieldName:someFieldValue : listOfIds
rcm.getAllIndexes(indexKey)
.then(indexes => {
// All indexes under key returned as { [key]: listOfIds}
// If no indexKey passed - all indexed will return
})
.catch(err => {
// Handle error
});
Each setting of value in RCM is publishing data (stored in key) on the key name as Redis channel.
You can listen to changes on key, or key pattern
// Add a listener for a key.
rcm.keyChange('my-key', (myNewlySetData) => {
// Do something with myNewlySetData
});
// Add a listener for a global pattern under a key. (this will look for any change under 'my-key:*')
rcm.keysChange('my-key', (myNewlySetData) => {
// Do something with myNewlySetData
});
// You can use quit/unref to quit or unref client and sub subscriber
rcm.quit();
rcm.unref();
Listeners on same key will override one another (listeners in set and keyChange)
FAQs
Cache data using Redis with pub/sub implementation
We found that redis-cache-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.