forked from badges/shields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lru-cache.js
97 lines (88 loc) · 2.91 KB
/
lru-cache.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Cache any data with a timestamp,
// remove only the oldest data.
var typeEnum = {
unit: 0,
heap: 1,
};
function Cache(size, type) {
if (!this instanceof Cache) { return new Cache(size, type); }
type = type || 'unit';
this.size = size;
this.type = typeEnum[type];
if (this.type === typeEnum.unit) { this.size -= 1; }
// `cache` contains {content, index}.
// - content: the actual data that is cached.
// - index: the position in `order` of the data.
this.cache = Object.create(null);
this.order = []; // list of cache keys from oldest to newest.
}
Cache.prototype = {
set: function addToCache(cacheIndex, cached) {
if (this.cache[cacheIndex] !== undefined) {
this.order.splice(this.cache[cacheIndex].index, 1);
// Put the new element at the end of `order`.
this.cache[cacheIndex].index = this.order.length;
this.cache[cacheIndex].content = cached;
this.order.push(cacheIndex);
} else {
// If the cache is full, remove the oldest data
// (ie, the data requested longest ago.)
var numberToRemove = this.limitReached();
if (numberToRemove > this.order.length) { numberToRemove = this.order.length; }
for (var i = 0; i < numberToRemove; i++) {
// Remove `order`'s oldest element, the first.
delete this.cache[this.order[0]];
this.order.shift();
}
this.cache[cacheIndex] = {
index: this.order.length,
content: cached,
};
this.order.push(cacheIndex);
}
},
get: function getFromCache(cacheIndex) {
if (this.cache[cacheIndex] !== undefined) {
this.order.splice(this.cache[cacheIndex].index, 1);
// Put the new element at the end of `order`.
this.cache[cacheIndex].index = this.order.length;
this.order.push(cacheIndex);
return this.cache[cacheIndex].content;
} else { return; }
},
has: function hasInCache(cacheIndex) {
return this.cache[cacheIndex] !== undefined;
},
// Returns the number of elements to remove if we're past the limit.
limitReached: function heuristic() {
if (this.type === typeEnum.unit) {
// Remove the excess.
return Math.max(0, (this.order.length - this.size));
} else if (this.type === typeEnum.heap) {
if (getHeapSize() >= this.size) {
console.log('LRU HEURISTIC heap:', getHeapSize());
// Remove half of them.
return (this.order.length >> 1);
} else { return 0; }
} else {
console.error("Unknown heuristic '" + this.type + "' for LRU cache.");
return 1;
}
},
};
// In bytes.
var heapSize;
var heapSizeTimeout;
function getHeapSize() {
if (heapSizeTimeout == null) {
// Compute the heap size every 60 seconds.
heapSizeTimeout = setInterval(computeHeapSize, 60 * 1000);
return computeHeapSize();
} else {
return heapSize;
}
}
function computeHeapSize() {
return heapSize = process.memoryUsage().heapTotal;
}
module.exports = Cache;