![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@redis/client
Advanced tools
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
@redis/client is a Node.js client for Redis, a powerful in-memory data structure store. This package allows you to interact with a Redis server to perform various operations such as setting and getting keys, managing data structures like lists and sets, and handling pub/sub messaging.
Basic Key-Value Operations
This feature allows you to perform basic key-value operations such as setting and getting values from the Redis store.
const { createClient } = require('@redis/client');
(async () => {
const client = createClient();
await client.connect();
await client.set('key', 'value');
const value = await client.get('key');
console.log(value); // Output: 'value'
await client.disconnect();
})();
Data Structures
This feature allows you to manage complex data structures like lists. The example demonstrates how to push values to a list and retrieve them.
const { createClient } = require('@redis/client');
(async () => {
const client = createClient();
await client.connect();
await client.lPush('list', 'value1');
await client.lPush('list', 'value2');
const list = await client.lRange('list', 0, -1);
console.log(list); // Output: ['value2', 'value1']
await client.disconnect();
})();
Pub/Sub Messaging
This feature allows you to use Redis's pub/sub messaging capabilities. The example shows how to publish a message to a channel and subscribe to that channel to receive messages.
const { createClient } = require('@redis/client');
(async () => {
const publisher = createClient();
const subscriber = createClient();
await publisher.connect();
await subscriber.connect();
await subscriber.subscribe('channel', (message) => {
console.log(message); // Output: 'Hello, World!'
});
await publisher.publish('channel', 'Hello, World!');
// Give some time for the message to be received
setTimeout(async () => {
await publisher.disconnect();
await subscriber.disconnect();
}, 1000);
})();
ioredis is another popular Redis client for Node.js. It supports both callback and Promise-based APIs and offers advanced features like cluster support and Lua scripting. Compared to @redis/client, ioredis is known for its high performance and extensive feature set.
redis is the original Node.js client for Redis. It is simple and easy to use, making it a good choice for basic Redis operations. However, it may lack some of the advanced features and performance optimizations found in @redis/client and ioredis.
node-redis is a modern, high-performance Redis client for Node.js. It offers a comprehensive set of features, including support for Redis modules and TypeScript. It is similar to @redis/client in terms of functionality but may offer better performance and additional features.
The source code and documentation for this package are in the main node-redis repo.
FAQs
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
The npm package @redis/client receives a total of 2,687,839 weekly downloads. As such, @redis/client popularity was classified as popular.
We found that @redis/client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.