Redis from でデータ操作を処理するには、 または などの ライブラリを使用して から、 でデータの追加、更新、削除、クエリなどの基本的な操作を実行する NodeJS 必要があります 。 以下は、これらの操作を実行するための簡単なガイドです。 Redis NodeJS redis
ioredis
Redis
ステップ 1: Redis ライブラリをインストールする
まず、 Redis npm を使用してライブラリをインストールします。
npm install redis
ステップ 2: に接続します Redis
コードで NodeJS 、次への接続を作成します Redis。
const redis = require('redis');
// Create a Redis connection
const client = redis.createClient({
host: 'localhost', // Replace 'localhost' with the IP address of the Redis server if necessary
port: 6379, // Replace 6379 with the Redis port if necessary
});
// Listen for connection errors
client.on('error',(err) => {
console.error('Error:', err);
});
ステップ 3: データの追加、更新、削除、クエリを実行する
接続を設定した後、次のようにデータ操作を実行できます。
データを追加します :
// Store a value in Redis with the key 'name' and value 'John'
client.set('name', 'John',(err, reply) => {
if(err) {
console.error('Error:', err);
} else {
console.log('Stored:', reply);
}
});
クエリデータ:
// Retrieve a value from Redis with the key 'name'
client.get('name',(err, reply) => {
if(err) {
console.error('Error:', err);
} else {
console.log('Retrieved:', reply);
}
});
データを更新します :
// Update the value of the key 'name' to 'Alice'
client.set('name', 'Alice',(err, reply) => {
if(err) {
console.error('Error:', err);
} else {
console.log('Updated:', reply);
}
});
データの削除 :
// Delete the data with the key 'name'
client.del('name',(err, reply) => {
if(err) {
console.error('Error:', err);
} else {
console.log('Deleted:', reply);
}
});
Redis のライブラリを 使用すると NodeJS、 でのデータ操作を簡単に処理でき Redis 、アプリケーションでその高速かつ効率的なデータ ストレージ機能を活用できます。