Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@keyv/redis
Advanced tools
@keyv/redis is an npm package that provides a Redis storage adapter for Keyv, a simple key-value storage library. It allows you to use Redis as a backend for storing key-value pairs, making it easy to integrate Redis into your Node.js applications.
Basic Key-Value Storage
This feature allows you to store and retrieve basic key-value pairs using Redis as the backend. The code sample demonstrates how to set and get a value from the Redis store.
const Keyv = require('keyv');
const keyv = new Keyv('redis://user:pass@localhost:6379');
(async () => {
await keyv.set('foo', 'bar');
const value = await keyv.get('foo');
console.log(value); // 'bar'
})();
Expiration of Keys
This feature allows you to set an expiration time for keys. The code sample demonstrates how to set a key with an expiration time and shows that the key is no longer available after the specified time.
const Keyv = require('keyv');
const keyv = new Keyv('redis://user:pass@localhost:6379');
(async () => {
await keyv.set('foo', 'bar', 1000); // Expires in 1 second
setTimeout(async () => {
const value = await keyv.get('foo');
console.log(value); // undefined
}, 1500);
})();
Namespace Support
This feature allows you to use namespaces to avoid key collisions. The code sample demonstrates how to set and get a value within a specific namespace.
const Keyv = require('keyv');
const keyv = new Keyv({ uri: 'redis://user:pass@localhost:6379', namespace: 'myapp' });
(async () => {
await keyv.set('foo', 'bar');
const value = await keyv.get('foo');
console.log(value); // 'bar'
})();
ioredis is a robust, full-featured Redis client for Node.js. It supports advanced Redis features like clustering, sentinel, and pipelining. Compared to @keyv/redis, ioredis offers more direct control over Redis commands and is suitable for more complex use cases.
redis is the official Node.js client for Redis. It provides a straightforward API for interacting with Redis and supports all Redis commands. While @keyv/redis focuses on key-value storage with a simple API, redis offers more granular control and flexibility.
node-cache is an in-memory caching module for Node.js. It provides a simple API for storing key-value pairs with optional expiration times. Unlike @keyv/redis, node-cache does not use Redis as a backend and is suitable for use cases where in-memory storage is sufficient.
Redis storage adapter for Keyv
Redis storage adapter for Keyv.
TTL functionality is handled directly by Redis so no timestamps are stored and expired keys are cleaned up internally.
npm install --save keyv @keyv/redis
import Keyv from 'keyv';
import KeyvRedis from '@keyv/redis';
const keyv = new Keyv(new KeyvRedis('redis://user:pass@localhost:6379'));
keyv.on('error', handleConnectionError);
Any valid Redis
options will be passed directly through.
e.g:
const keyv = new Keyv(new KeyvRedis('redis://user:pass@localhost:6379', { disable_resubscribing: true }));
Or you can manually create a storage adapter instance and pass it to Keyv:
import Keyv from 'keyv';
import KeyvRedis from '@keyv/redis';
const keyvRedis = new KeyvRedis('redis://user:pass@localhost:6379');
const keyv = new Keyv({ store: keyvRedis });
Or reuse a previous Redis instance:
import Keyv from 'keyv';
import Redis from 'ioredis';
import KeyvRedis from '@keyv/redis';
const redis = new Redis('redis://user:pass@localhost:6379');
const keyvRedis = new KeyvRedis(redis);
const keyv = new Keyv({ store: keyvRedis });
Or reuse a previous Redis cluster:
import Keyv from 'keyv';
import Redis from 'ioredis';
import KeyvRedis from '@keyv/redis';
const redis = new Redis.Cluster('redis://user:pass@localhost:6379');
const keyvRedis = new KeyvRedis(redis);
const keyv = new Keyv({ store: keyvRedis });
The useRedisSets
option lets you decide whether to use Redis sets for key management. By default, this option is set to true
.
When useRedisSets
is enabled (true
):
clear
function), all keys in the Redis set are looked up for deletion. The set itself is also deleted.Note: In high-performance scenarios, enabling useRedisSets
might lead to memory leaks. If you're running a high-performance application or service, it is recommended to set useRedisSets
to false
.
If you decide to set useRedisSets
as false
, keys will be handled individually and Redis sets won't be utilized.
However, please note that setting useRedisSets
to false
could lead to performance issues in production when using the clear
function, as it will need to iterate over all keys to delete them.
Here's how you can use the useRedisSets
option:
import Keyv from 'keyv';
const keyv = new Keyv(new KeyvRedis('redis://user:pass@localhost:6379', { useRedisSets: false }));
FAQs
Redis storage adapter for Keyv
The npm package @keyv/redis receives a total of 103,507 weekly downloads. As such, @keyv/redis popularity was classified as popular.
We found that @keyv/redis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.