lfu-cache

There are 81 repositories under lfu-cache topic.

  • CheckRunner

    Language:Java
  • DSAP-Assignments

    DSAP Course Assignments 2022-2023

    Language:C++1
  • camouflage

    camouflage

    Caching data structures for Scala

    Language:Scala1
  • LRU-LFU-cache

    This C++ program utilizes SFML library to visualize the LRU LFU cache. It demonstrates adding and retrieving key-value pairs, and dynamically updates the cache visualization. The operations are done by Queue. Here queue is implemented using a doubly linked list.

    Language:C++1
  • Cache

    Cache design with multi-threding and Aync-Await

    Language:Python1
  • serverless-cache

    Caching system on Apache Openwhisk

  • tiny_lfu

    A pure Elixir implementation of a tiny LFU cache addition policy.

    Language:Elixir1
  • gcache

    golang cache interface and some algorithm implementation

    Language:Go1
  • lfu_vecs

    LFU implemented in very basic (no interior mutability)

    Language:Rust1
  • LFUCache

    A Swift implementation of a Least Frequently Used cache.

    Language:Swift1
  • LFU

    Least Frequently Used Cache implementation in O(1) + implementation contributed in python

    Language:Python1
  • TwoLevelCache

    Create a configurable two-level cache (for caching Objects). Level 1 is memory, level 2 is filesystem. Config params should let one specify the cache strategies and max sizes of level 1 and 2.

  • lfu

    LFU Cache in Go/Golang

    Language:Go1
  • Cache-Algorithms

    A comprehensive collection of efficient cache implementation strategies and algorithms designed to optimize memory management and improve computational performance across various programming paradigms.

    Language:Java
  • go-tiny-wiki

    Tiny (but functional) golang wiki.

    Language:Go
  • Ezrah

    GraphQL Api endpoint for CoinMarketApp

    Language:TypeScript
  • CacheEvictor

    Implementation of cache eviction policies including Least Recently Used (LRU), Least Frequently Used (LFU), and First-In-First-Out (FIFO) algorithms. This project demonstrates efficient cache management techniques to optimize data retrieval and memory usage.

  • caches

    Educational C++ project from the K. Vladimirov's course at MIPT

    Language:C++
  • LFU-LRU-cache

    Build Simple LFU and LRU Cache.

    Language:C++
  • FastAPI-Cache-Comparison

    A FastAPI-based application for simulating and comparing the performance of various caching algorithms (LRU, LFU, ARC) in a distributed system environment.

    Language:Python
  • abcs

    Adaptive bandit cache selection

    Language:Go
  • cache-eviction-policies

    A comprehensive collection of cache eviction policies implemented in python, providing practical examples for Least Recently Used (LRU), Least Frequently Used (LFU), and other strategies to optimize data caching in your applications.

    Language:Python
  • cache

    LFU cache implementation with its comparison to 'perfect caching alogirthm'.

    Language:C++
  • Cache

    Реализация работы LFU кэша на C++

    Language:C++
  • lfu

    a lightweight package that implements lfu cache algorithm in Go

    Language:Go
  • lfu

    LFU (least frequently used) - The algorithm is based on a ring data structure

    Language:Go
  • hwc-cache

    C++ LFU cache implementation

    Language:C++
  • Cache

    LRU and LFU cache with Python

    Language:Python
  • lfuda-c

    LFU with Dynamic Aging cache implementation in C

    Language:C
  • services-lfu-cache

    This is a project to learn some elements of go. It is a thread-safe cache algorithm, based on the LFU principle. Also you can define the max heap size the runtime of this cache service may use. The aim is to not include any other package dependencies away from the standard go library to can really learn all the basics.

    Language:Go
  • node-lup-caches

    Node module that offers different caches

    Language:JavaScript
  • data-structures-algorithms

    Data structures and algorithms problems solutions

    Language:Java
  • lru-lfu-cache-test-task-java

    Test task on LRU and LFU caching implementation in JAVA.

    Language:Java
  • libcache

    C++ header-only library for software based caches

    Language:C++
  • Caches

    A toy implementation of cache using FILO, FIFO, LRU and LFU policies in C++.

    Language:C++
  • cache

    Implementations of various cache replacement algorithms

    Language:Go