prefetch init

This commit is contained in:
HiccupHan 2025-02-13 13:37:27 -08:00
parent 854b50ea0b
commit 6234e88265
2 changed files with 30 additions and 1 deletions

@ -56,7 +56,8 @@ class BaselineCache(Cache):
evict = True
self.cache[key] = val
self.cache.move_to_end(key)
# no need for this since this op appends key-val by default
# self.cache.move_to_end(key)
return evict

28
prefetch_cache.py Normal file

@ -0,0 +1,28 @@
from cache import BaselineCache
class PrefetchCache(BaselineCache):
key_relations = None
def __init__(self):
super()
self.key_relations = dict()
def put(self, key: str, val: str) -> bool:
# LRU evict
evict = False
if len(self.cache) >= self.limit:
self.cache.popitem(last = False)
evict = True
self.cache[key] = val
self.prefetch(key, val)
return evict
def prefetch(self, key: str, val: str) -> bool:
if len(self.cache) >= self.limit and key in self.key_relations:
self.cache[self.key_relations[key][0]] = self.key_relations[key][1]
return True
return False
def set_relations(self):
return