-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathADLFUCache.py
44 lines (36 loc) · 1.5 KB
/
ADLFUCache.py
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
"""Adaptive Decaying LFU Cache Class
This is a basic implementation of an adaptive DLFU caching class,
which dynamically adjusts the T decay timeconstant to optimize cache
hitrates. The DLFU cache this is based on is documented at;
http://minkirri.apana.org.au/wiki/DecayingLFUCacheExpiry
Author : Donovan Baarda <[email protected]>
License : LGPL
Download: http://minkirri.apana.org.au/~abo/projects/DLFUCache/
https://github.com/dbaarda/DLFUCache
"""
from DLFUCache import DLFUCache
from PIDController import PIDController, LowPassFilter
class ADLFUCache(DLFUCache):
"""An Adaptive Decaying LFU Cache."""
def __init__(self, size, msize=None):
super(ADLFUCache, self).__init__(size, msize, 8.0)
self.slow_lpf = LowPassFilter(2.0*size)
self.fast_lpf = LowPassFilter(size/2.0)
self.pid = PIDController.ZiglerNichols(8.0, size/2.0)
self.dt = 0.0
def _setT(self, T):
self.C *= self.T / T
self.T = T
self.M = (T*self.size + 1.0) / (T*self.size)
def __getitem__(self, key):
self.dt = 1.0
count = self.getcount(key) / self.T
slow = self.slow_lpf.update(count, self.dt)
fast = self.fast_lpf.update(count, self.dt)
error = (fast - slow) # / (fast + slow)
control = self.pid.update(error, self.dt)
# Transform the pid control output into 0.0 < T < inf and T=8.0 when control=0.0.
T = 2.0 * (1.1 + control) / (1.1 - control)
self._setT(T)
#print("%6d" % key, self, fast, slow, self.pid)
ret = super(ADLFUCache, self).__getitem__(key)