探索Nedis:Node.js中的Redis魅力
// 引入Node.js的Redis客户端
const redis = require('redis');
// 创建与Redis服务器的连接
const client = redis.createClient({
url: 'redis://localhost:6379'
});
// 连接错误处理
client.on('error', (err) => {
console.log('Redis连接错误:', err);
});
// 连接成功处理
client.on('connect', () => {
console.log('成功连接到Redis服务器!');
});
// 使用Redis的SET和GET命令
client.set('key', 'value', redis.print);
client.get('key', (err, value) => {
if (err) throw err;
console.log('键 "key" 的值为:', value);
// 断开与Redis服务器的连接
client.quit();
});
这段代码展示了如何在Node.js环境中使用redis
模块连接到Redis服务器,并执行了SET
和GET
命令。它还演示了如何处理可能发生的错误,并在操作完成后断开与Redis服务器的连接。
评论已关闭