赞
踩
node_redis星星更多但是我们选择ioredis,因为ioredis更新,属于node_redis改良版。
【文章】ioredis 的开发背景以及与 node_redis 合并的计划
不过ioredis与node_redis的作者正在讨论将两者合为一个库。
npm install ioredis
https://github.com/mood6666/AnotherRedisDesktopManager
var Redis = require('ioredis'); var redis = new Redis(); redis.set('foo', 'bar'); redis.get('foo', function (err, result) { console.log(result); }); redis.del('foo'); // Or using a promise if the last argument isn't a function redis.get('foo').then(function (result) { console.log(result); }); // Arguments to commands are flattened, so the following are the same: redis.sadd('set', 1, 3, 5, 7); redis.sadd('set', [1, 3, 5, 7]); // All arguments are passed directly to the redis server: redis.set('key', 100, 'EX', 10);
new Redis() // Connect to 127.0.0.1:6379
new Redis(6380) // 127.0.0.1:6380
new Redis(6379, '192.168.1.1') // 192.168.1.1:6379
new Redis('/tmp/redis.sock')
new Redis({
port: 6379, // Redis port
host: '127.0.0.1', // Redis host
family: 4, // 4 (IPv4) or 6 (IPv6)
password: 'auth',
db: 0
})
对redis实现的管道,避免出现前面提到的往返时延问题。
var pipeline = redis.pipeline(); pipeline.set('foo', 'bar'); pipeline.del('cc'); pipeline.exec(function (err, results) { // `err` is always null, and `results` is an array of responses // corresponding to the sequence of queued commands. // Each response follows the format `[err, result]`. }); // You can even chain the commands: redis.pipeline().set('foo', 'bar').del('cc').exec(function (err, results) { }); // `exec` also returns a Promise: var promise = redis.pipeline().set('foo', 'bar').get('foo').exec(); promise.then(function (result) { // result === [[null, 'OK'], [null, 'bar']] });
还有另外一种调用方式:
redis.pipeline([
['set', 'foo', 'bar'],
['get', 'foo']
]).exec(function () { /* ... */ });
redis.multi().set('foo', 'bar').get('foo').exec(function (err, results) {
// results === [[null, 'OK'], [null, 'bar']]
});
node_index.js
var Redis = require('ioredis'); var redis = new Redis(); // 实例化了一个客户端 // redis.set('foo', 'bar'); // redis.get('foo', function(err, result) { // 第一个参数是err这是nodejs的约定 // console.log('result', result) // }) // // redis.del('foo'); // // redis.sadd('set', 1 , 3, 5 ,7); // redis.sadd('set', [2, 4, 6, 8]); // 类似apply和call // // 需要过期时间 // redis.set('guoqi', 100, 'EX', 5); // var pipeline = redis.pipeline(); // pipeline.set('hello', 'world').set('nihao', 'china').exec(); redis.multi().set('shiwu3', 'aaa').set('shiwu4', asdsad).exec();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。