You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
Added lrange to bench.js
This commit is contained in:
19
bench.js
19
bench.js
@@ -17,9 +17,15 @@ function next(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
var queue = [
|
var queue = [
|
||||||
|
|
||||||
|
// FLUSHALL
|
||||||
|
|
||||||
function(){
|
function(){
|
||||||
client.flushall(next);
|
client.flushall(next);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// LPUSH
|
||||||
|
|
||||||
function(){
|
function(){
|
||||||
var n = times
|
var n = times
|
||||||
, start = new Date;
|
, start = new Date;
|
||||||
@@ -29,6 +35,19 @@ var queue = [
|
|||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// LRANGE
|
||||||
|
|
||||||
|
function(){
|
||||||
|
var n = times
|
||||||
|
, start = new Date;
|
||||||
|
while (n--) client.lrange("mylist", 0, 99);
|
||||||
|
client.lrange("mylist", 0, 99, function (err, res) {
|
||||||
|
curr.lrange = new Date - start;
|
||||||
|
next();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
report
|
report
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user