thingies icon indicating copy to clipboard operation
thingies copied to clipboard

perf: `LruMap`

Open streamich opened this issue 1 year ago • 0 comments

Maybe setting the default limit in LruMap to some integer would improve perf, as Infinity is probably stored as f64.

export class LruMap<K, V> extends Map<K, V> {
  constructor(public readonly limit: number = Infinity) {

streamich avatar Aug 11 '24 08:08 streamich