Skip to content

Releases: Devkant21/keyache

LRU_AVL_1.0.4

Choose a tag to compare

@Devkant21 Devkant21 released this 16 Apr 08:41
9f85740

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

Choose a tag to compare

@Devkant21 Devkant21 released this 15 Apr 16:50

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.