Represents a single node in the doubly-linked list used by HttpLru.
Each node holds a cached HTTP response keyed by its request hash, along with
pointers to the previous and next nodes for O(1) reordering.
LruNode
Source
interfaceLruNode { /** The request hash used as the cache lookup key */ key:string; /** The cached HTTP response data */ value:FetchDecoratorResponse; /** Pointer to the previous (more recently used) node, or `null` if this is the head */ prev:LruNode|null; /** Pointer to the next (less recently used) node, or `null` if this is the tail */ next:LruNode|null; }
Represents a single node in the doubly-linked list used by HttpLru. Each node holds a cached HTTP response keyed by its request hash, along with pointers to the previous and next nodes for O(1) reordering.
LruNode
Source