awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

8 repository-uri

Awesome GitHub RepositoriesMemory Buffering

Techniques for holding generated data in volatile memory before persisting to local storage.

Distinct from Client-Side Storage: Focuses on temporary memory buffering for file generation, distinct from persistent client-side storage solutions.

Explore 8 awesome GitHub repositories matching web development · Memory Buffering. Refine with filters or upvote what's useful.

Awesome Memory Buffering GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • google/leveldbAvatar google

    google/leveldb

    39,152Vezi pe GitHub↗

    LevelDB is an embedded database library and persistent storage engine that provides a sorted key-value store. It uses a log-structured merge-tree architecture to map byte arrays to values, running directly within a process to provide storage without the need for a separate server process. The system is distinguished by its use of custom comparison functions to define key ordering, enabling efficient range scans and sequenced lookups. It ensures data reliability through atomic batch execution, consistent snapshot generation, and log-based recovery after failures. The engine covers broad capab

    Buffers recent writes in a sorted MemTable before flushing them to immutable disk tables.

    C++
    Vezi pe GitHub↗39,152
  • facebook/rocksdbAvatar facebook

    facebook/rocksdb

    31,767Vezi pe GitHub↗

    RocksDB is a high-performance, embeddable persistent key-value library and storage engine based on Log-Structured Merge-trees. It is designed to provide durable storage for large-scale datasets, integrating directly into applications to manage data on flash and RAM-based hardware. The engine is distinguished by its focus on minimizing read and write amplification through multi-threaded compaction and custom memory allocators. It features specialized optimizations for flash storage, including support for zoned block devices, and provides the ability to extend store behavior via external plugin

    Buffers incoming writes in a sorted memory structure (MemTable) before flushing them as immutable sorted string tables.

    C++databasestorage-engine
    Vezi pe GitHub↗31,767
  • yuliskov/smarttubenextAvatar yuliskov

    yuliskov/SmartTubeNext

    30,632Vezi pe GitHub↗

    SmartTubeNext is a third-party YouTube client and media application specifically optimized for Android TV. It provides an interface designed for remote control navigation and television screens, allowing users to browse and play video content. The application integrates crowdsourced data to automatically skip sponsored segments and intros during playback. It also includes casting capabilities that allow users to send media from a mobile device to a television using pairing codes. The software covers media playback optimization through hardware-accelerated codec selection, playback buffer man

    Implements memory buffering to preload video data and prevent playback interruptions during network fluctuations.

    Java
    Vezi pe GitHub↗30,632
  • eligrey/filesaver.jsAvatar eligrey

    eligrey/FileSaver.js

    22,032Vezi pe GitHub↗

    FileSaver.js is a client-side utility library designed to trigger browser download prompts for files generated within a web application or retrieved from remote web addresses. It enables the export of data directly to a user's local device, eliminating the need for server-side processing or backend infrastructure to handle file creation and storage. The library functions as a wrapper for the browser Blob API, simplifying the process of encapsulating binary data and mapping it to temporary object URLs. By programmatically managing anchor elements and their download attributes, it simulates use

    Holds generated data in the browser's volatile memory space until the user confirms the save operation to local storage.

    JavaScript
    Vezi pe GitHub↗22,032
  • k4yt3x/video2xAvatar k4yt3x

    k4yt3x/video2x

    18,754Vezi pe GitHub↗

    Video2x is a modular processing framework designed for AI-enhanced video upscaling and frame rate conversion. It functions as a comprehensive toolset for increasing the resolution and visual clarity of media files while generating intermediate frames to improve motion smoothness. The system is built to handle intensive media transformation tasks by leveraging hardware acceleration and custom encoding pipelines. The project distinguishes itself through a plugin-based architecture that allows for the integration of custom machine learning models and specialized algorithms. It utilizes a modular

    Maintains video frames in system memory to minimize disk I/O during multi-stage transformation pipelines.

    C++anime4kframe-interpolationmachine-learning
    Vezi pe GitHub↗18,754
  • rerun-io/rerunAvatar rerun-io

    rerun-io/rerun

    10,214Vezi pe GitHub↗

    Rerun is a multimodal data visualizer and robotics data logger designed for rendering synchronized streams of 3D spatial data, images, and time-series metrics. It functions as a tool for capturing high-frequency sensor data and AI outputs into a queryable columnar format, providing a dedicated interface for viewing MCAP recording files and analyzing physical environments. The project distinguishes itself as a machine learning dataset streamer, capable of feeding logged recordings directly into GPU buffers and PyTorch training pipelines without intermediate exports. It supports a high-performa

    Stores logged entries in a local queue to ensure data integrity until a stable connection or file destination is available.

    Rustcomputer-visioncppmultimodal
    Vezi pe GitHub↗10,214
  • syndtr/goleveldbAvatar syndtr

    syndtr/goleveldb

    6,319Vezi pe GitHub↗

    goleveldb este o bază de date embedded de tip cheie-valoare pentru Go. Oferă persistența și indexarea locală a datelor, permițând aplicațiilor să stocheze și să preia informații folosind chei unice fără a necesita un server separat. Baza de date organizează datele folosind un log-structured merge-tree și indexare persistentă în ordine lexicografică. Această structură suportă scanări eficiente de interval și căutări bazate pe prefix. Sistemul include capabilități pentru scrieri atomice în lot pentru a asigura consistența datelor și a evita actualizările parțiale. Performanța este gestionată prin write-ahead logging, buffering bazat pe memorie și filtre bloom pentru a reduce input-ul și output-ul inutil pe disc.

    Buffers recent writes in a sorted in-memory structure before flushing them to disk as immutable SSTables.

    Godatabasegoleveldb
    Vezi pe GitHub↗6,319
  • skyzh/mini-lsmAvatar skyzh

    skyzh/mini-lsm

    4,034Vezi pe GitHub↗

    Mini-LSM is an educational storage engine and key-value database library designed to demonstrate the implementation of log-structured merge-tree architecture. It serves as a pedagogical resource for understanding how to build high-performance storage systems from the ground up, focusing on the mechanics of persistent data structures and disk-based storage. The project provides a functional framework for managing data through memory-to-disk flushing and multi-version concurrency control. It distinguishes itself by implementing snapshot-based isolation, which allows for consistent views of the

    Buffers writes in sorted in-memory structures before flushing them as immutable files to persistent storage.

    Rustdatabasekey-value-storekv-store
    Vezi pe GitHub↗4,034
  1. Home
  2. Web Development
  3. Client-Side Storage
  4. Memory Buffering

Explorează sub-etichetele

  • Sorted Memory Buffers1 sub-tagSorted in-memory structures that buffer writes before persisting them to disk. **Distinct from Memory Buffering:** Specifically refers to the sorted MemTable pattern used in LSM-trees, not general volatile memory buffering.