Chun oibríochtaí sonraí a láimhseáil i Redis, NodeJS ní mór duit leabharlann a úsáid Redis le haghaidh NodeJS a leithéid redis
nó ioredis
agus ansin oibríochtaí bunúsacha a dhéanamh ar nós sonraí a shuimiú, a nuashonrú, a scriosadh agus a cheistiú i Redis. Anseo thíos tá treoir shimplí chun na hoibríochtaí seo a dhéanamh:
Céim 1: Suiteáil an Redis leabharlann
Ar dtús, suiteáil an Redis leabharlann ag baint úsáide as npm:
npm install redis
Céim 2: Ceangail le Redis
do NodeJS chód, cruthaigh nasc le 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);
});
Céim 3: Cuir, Nuashonraigh, Scrios agus Sonraí Iarratas
Tar éis duit an nasc a bhunú, is féidir leat oibríochtaí sonraí a dhéanamh mar seo a leanas:
Cuir sonraí leis :
// 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);
}
});
Sonraí iarratais:
// 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);
}
});
Nuashonraigh sonraí :
// 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);
}
});
Scrios sonraí :
// Delete the data with the key 'name'
client.del('name',(err, reply) => {
if(err) {
console.error('Error:', err);
} else {
console.log('Deleted:', reply);
}
});
Trí úsáid a bhaint as an Redis leabharlann i NodeJS, is féidir leat oibríochtaí sonraí a láimhseáil go héasca Redis agus leas a bhaint as a cumas stórála sonraí tapa agus éifeachtach i d'fheidhmchlár.