lfu-cache
There are 81 repositories under lfu-cache topic.
DSAP-Assignments
DSAP Course Assignments 2022-2023
camouflage
Caching data structures for Scala
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.
Cache
Cache design with multi-threding and Aync-Await
serverless-cache
Caching system on Apache Openwhisk
tiny_lfu
A pure Elixir implementation of a tiny LFU cache addition policy.
gcache
golang cache interface and some algorithm implementation
lfu_vecs
LFU implemented in very basic (no interior mutability)
LFUCache
A Swift implementation of a Least Frequently Used cache.
LFU
Least Frequently Used Cache implementation in O(1) + implementation contributed in python
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
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.
go-tiny-wiki
Tiny (but functional) golang wiki.
Ezrah
GraphQL Api endpoint for CoinMarketApp
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
LFU-LRU-cache
Build Simple LFU and LRU Cache.
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.
abcs
Adaptive bandit cache selection
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.
cache
LFU cache implementation with its comparison to 'perfect caching alogirthm'.
Cache
Реализация работы LFU кэша на C++
lfu
a lightweight package that implements lfu cache algorithm in Go
lfu
LFU (least frequently used) - The algorithm is based on a ring data structure
hwc-cache
C++ LFU cache implementation
Cache
LRU and LFU cache with Python
lfuda-c
LFU with Dynamic Aging cache implementation in 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.
node-lup-caches
Node module that offers different caches
data-structures-algorithms
Data structures and algorithms problems solutions
lru-lfu-cache-test-task-java
Test task on LRU and LFU caching implementation in JAVA.
libcache
C++ header-only library for software based caches
Caches
A toy implementation of cache using FILO, FIFO, LRU and LFU policies in C++.
cache
Implementations of various cache replacement algorithms