Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 709 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 709 Bytes

Multilevel Caching System

Overview

This project implements a dynamic multilevel caching system with support for various eviction policies like LRU and LFU. The system manages multiple cache levels and promotes data between levels as per the caching policies.

Key Features

  • Supports dynamic addition of cache levels.
  • Implements Least Recently Used (LRU) and Least Frequently Used (LFU) eviction policies.
  • Data promotion between cache levels on retrieval.
  • Efficient in-memory caching solution with no external services.

Instructions to Run

  1. Clone the repository.
  2. Open the project in your preferred IDE (e.g., IntelliJ, Eclipse).
  3. Run the Main.java class to execute the test cases.