Norėdami atlikti duomenų operacijas iš Redis, NodeJS turite naudoti Redis biblioteką, NodeJS pvz. redis
, arba ioredis
, tada atlikti pagrindines operacijas, pvz., pridėti, atnaujinti, ištrinti ir pateikti užklausas Redis. Žemiau yra paprastas vadovas, kaip atlikti šias operacijas:
1 veiksmas: įdiekite Redis biblioteką
Pirmiausia įdiekite Redis biblioteką naudodami npm:
npm install redis
2 veiksmas: prisijunkite prie Redis
savo NodeJS kodą, sukurkite ryšį su 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 veiksmas: pridėkite, atnaujinkite, ištrinkite ir pateikite duomenų užklausą
Sukūrę ryšį, duomenų operacijas galite atlikti taip:
Pridėti duomenis :
// 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);
}
});
Užklausos duomenys:
// 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);
}
});
Atnaujinti duomenis :
// 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);
}
});
Ištrinti duomenis :
// Delete the data with the key 'name'
client.del('name',(err, reply) => {
if(err) {
console.error('Error:', err);
} else {
console.log('Deleted:', reply);
}
});
Naudodami Redis biblioteką programoje NodeJS galite lengvai atlikti duomenų operacijas Redis ir pasinaudoti greito bei veiksmingo duomenų saugojimo galimybėmis programoje.