core.lrucache
Home > @medplum/core > LRUCache
LRUCache class
LRU cache (least recently used) Source: https://stackoverflow.com/a/46432113
Signature:
export declare class LRUCache<T>
Constructors
Constructor | Modifiers | Description |
---|---|---|
Constructs a new instance of the |
Methods
Method | Modifiers | Description |
---|---|---|
Deletes all values from the cache. | ||
Deletes the value for the given key. | ||
Returns the value for the given key. | ||
Returns the list of all keys in the cache. | ||
Sets the value for the given key. |