GitHub
isaacs projects
benchmark summary
benchmark details
Preparing search index...
The search index is not available
lru-cache
lru-cache
LRUCache
Entry
Interface Entry<V>
Entry objects used by
LRUCache#load
and
LRUCache#dump
, and returned by
LRUCache#info
.
interface
Entry
<
V
>
{
size
?:
number
;
start
?:
number
;
ttl
?:
number
;
value
:
V
;
}
Type Parameters
V
Index
Properties
size?
start?
ttl?
value
Properties
Optional
size
size
?:
number
Optional
start
start
?:
number
Optional
ttl
ttl
?:
number
value
value
:
V
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
size
start
ttl
value
GitHub
isaacs projects
benchmark summary
benchmark details
lru-cache
Loading...
Entry objects used by LRUCache#load and LRUCache#dump, and returned by LRUCache#info.