awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 Repos

Awesome GitHub RepositoriesMemory-Bounded Caching

Cache management that enforces strict memory limits by automatically evicting low-value data.

Distinct from Bounded-Memory Decompression: Focuses on enforcing total cache memory bounds, not just bounded decompression streams.

Explore 4 awesome GitHub repositories matching data & databases · Memory-Bounded Caching. Refine with filters or upvote what's useful.

Awesome Memory-Bounded Caching GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • dgraph-io/ristrettoAvatar von dgraph-io

    dgraph-io/ristretto

    6,932Auf GitHub ansehen↗

    Ristretto is a high-performance in-memory cache and concurrent key-value store for Go applications. It provides a thread-safe memory store that manages strict memory bounds and employs probabilistic set filters to reduce lookup overhead. The system is distinguished by an admission-policy cache that utilizes frequency sketches and cost-based eviction to maximize hit ratios. It minimizes contention and improves throughput through the use of striped ring buffers and concurrent map sharding. The project covers a broad range of data management capabilities, including time-based expiration, item f

    Manages strict memory bounds by automatically evicting low-value data to prevent out-of-memory errors.

    Go
    Auf GitHub ansehen↗6,932
  • jakewharton/disklrucacheAvatar von JakeWharton

    JakeWharton/DiskLruCache

    5,783Auf GitHub ansehen↗

    DiskLruCache is a disk-backed key-value cache library for Android and Java environments that stores data on the filesystem within a configurable byte limit. It uses a least-recently-used (LRU) eviction policy to automatically remove old entries when the cache exceeds its allocated size, and maintains a journal file to reconstruct its in-memory state after a process restart. The cache provides atomic write operations that first write new data to a temporary file before atomically renaming it, preventing partial or corrupted reads during concurrent access. It returns frozen snapshots of cache e

    Enforces a configurable disk byte limit with per-entry size tracking and automatic eviction.

    Java
    Auf GitHub ansehen↗5,783
  • a597873885/webfunny_monitorAvatar von a597873885

    a597873885/webfunny_monitor

    5,298Auf GitHub ansehen↗

    webfunny_monitor is an open-source frontend monitoring and analytics platform that tracks page load performance, JavaScript errors, and user behavior. It serves as a comprehensive tool for measuring page load speed, API response times, client-side errors, and custom user events, with real-time dashboards that stream aggregated metrics via WebSocket for sub-second updates. The project distinguishes itself through its architectural approach: events are collected asynchronously via lightweight HTTP beacons and batched before transmission, while a memory-bounded local storage buffer ensures relia

    Caches event data in a memory-bounded local storage buffer to ensure reliable delivery under intermittent network conditions.

    JavaScriptburying-pointfront-end-monitorfrontend-monitoring
    Auf GitHub ansehen↗5,298
  • hashicorp/golang-lruAvatar von hashicorp

    hashicorp/golang-lru

    5,091Auf GitHub ansehen↗

    This is a thread-safe in-memory cache library for Go that automatically evicts the least recently used items when capacity is reached. It provides a fixed-size memory cache designed to maintain a constant memory footprint by removing the oldest entries as new data arrives. The system includes an eviction manager that executes custom callbacks when entries are purged to facilitate resource cleanup. It also supports time-based expiration, allowing for the automatic removal of items after a specified time-to-live duration. The library covers general caching capabilities including cache inspecti

    Enforces a strict capacity limit on the number of stored elements to maintain a constant memory footprint.

    Go
    Auf GitHub ansehen↗5,091
  1. Home
  2. Data & Databases
  3. High-Throughput Decompression
  4. Bounded-Memory Decompression
  5. Memory-Bounded Caching

Unter-Tags erkunden

  • Bounded Disk Cache AllocationsEnforces a configurable total disk byte limit by tracking per-entry sizes and triggering eviction during writes. **Distinct from Memory-Bounded Caching:** Distinct from Memory-Bounded Caching: focuses on disk byte limits with per-entry tracking, not memory bounds.
  • Client-Side Event BuffersCaches event data in memory-bounded IndexedDB or localStorage buffers before transmission for reliable delivery. **Distinct from Memory-Bounded Caching:** Distinct from Memory-Bounded Caching: focuses on client-side event buffering for telemetry, not general cache management.