Redis سے میں ڈیٹا آپریشنز کو ہینڈل کرنے کے لیے ، آپ کو ایک لائبریری 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 اور اپنی ایپلیکیشن میں اس کی تیز رفتار اور موثر ڈیٹا اسٹوریج کی صلاحیتوں سے فائدہ اٹھا سکتے ہیں۔