mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
460 B
26 lines
460 B
12 years ago
|
var LRU = require('lru-cache');
|
||
|
|
||
|
var max = +process.argv[2] || 10240;
|
||
11 years ago
|
var more = 102400;
|
||
12 years ago
|
|
||
|
var cache = LRU({
|
||
|
max: max, maxAge: 86400e3
|
||
|
});
|
||
|
|
||
|
// fill cache
|
||
|
for (var i = 0; i < max; ++i) {
|
||
|
cache.set(i, {});
|
||
|
}
|
||
|
|
||
|
var start = process.hrtime();
|
||
|
|
||
|
// adding more items
|
||
|
for ( ; i < max+more; ++i) {
|
||
|
cache.set(i, {});
|
||
|
}
|
||
|
|
||
|
var end = process.hrtime(start);
|
||
|
var msecs = end[0] * 1E3 + end[1] / 1E6;
|
||
|
|
||
|
console.log('adding %d items took %d ms', more, msecs.toPrecision(5));
|