Skip to content

Releases: Devkant21/keyache

LRU_AVL_1.0.4

16 Apr 08:41
9f85740
Compare
Choose a tag to compare

Feature

LRU mechanism combined with AVL trees.

This feature offers efficient data retrieval with self-balancing capabilities, ensuring consistent O(log n) performance for insertions, deletions, and lookups.

The AVL-based LRU cache optimizes memory usage by maintaining a balanced tree structure, providing a seamless balance between speed and memory efficiency.

1.0.0

15 Apr 16:50
Compare
Choose a tag to compare

https://www.npmjs.com/package/keyache/

The "keyache" package offers a memory-efficient caching solution using an LRU (Least Recently Used) mechanism. By combining a Binary Search Tree (BST) for fast key-value lookups with a doubly linked list for LRU management, it provides quick data retrieval while optimizing memory usage. This package is beneficial for applications needing efficient and automated caching to improve performance and reduce computational overhead.