5 مستودعات
Implementations of standard data structures that persist their state to the local filesystem.
Distinct from Disk-based: None of the candidates cover the general concept of mapping standard data structures (lists, sets, deques) to disk storage.
Explore 5 awesome GitHub repositories matching data & databases · Disk-Backed Data Structures. Refine with filters or upvote what's useful.
Beanstalkd is a distributed work queue server designed for asynchronous job processing. It functions as a standalone server that distributes background tasks between producers and consumers to improve application responsiveness and throughput. The system organizes tasks using numeric priority levels to ensure critical work is processed first. It manages the job lifecycle through discrete states and uses a simple line-based text protocol over TCP for communication. To ensure reliability, the server persists job data to a sequential disk log, allowing the queue state to be recovered after a sy
Implements a disk-backed storage mechanism for the work queue to ensure state recovery after system crashes.
This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core operating system concepts of process management through the fork-exec-wait model, dynamic memory allocation using implicit free list heap allocators, inode-based file systems, inter-process communication via pipes and shared memory, POSIX threads with synchronization primitives, signal-based asynchronous notification, virtual memory with page table translation, and runtime diagnostics using Valgrind and GDB. The textbook distinguishes itself by providing practical, implementation
Describes RAID-1 mirroring as a fault-tolerance concept within the filesystem chapter.
MapDB هو محرك قاعدة بيانات مضمن ومكتبة مجموعات مدعومة بالقرص تخزن مجموعات Java على القرص أو خارج الذاكرة العشوائية (Off-heap). يعمل كمحرك معالجة بيانات محلي مصمم للتعامل مع مجموعات البيانات التي تتجاوز الذاكرة العشوائية المتاحة. يستخدم المشروع تخزين البيانات خارج الذاكرة العشوائية للقضاء على عبء جمع القمامة ويستخدم التخزين المؤقت للقرص لموازنة استخدام الذاكرة والقرص. يوفر أدوات متخصصة لتصفية وتحليل كميات كبيرة من البيانات المحلية على جهاز واحد. يضمن النظام سلامة البيانات من خلال معاملات متوافقة مع ACID والتحكم في التزامن متعدد الإصدارات. يدعم الخرائط والمجموعات والطوابير المستمرة باستخدام فهرسة B-tree وسجل معاملات تسلسلي للمتانة. يمكن مراقبة سلوك النظام وعمليات المحرك الداخلية من خلال مستويات تسجيل وتنسيقات مخرجات قابلة للتكوين.
Provides implementations of standard Java data structures that persist their state directly to the local filesystem.
Miniflare is a local simulator and emulator for Cloudflare Workers. It provides a serverless runtime environment on a local machine, allowing for the development and testing of functions and edge APIs without deploying to a production cloud environment. The project implements a local simulation of edge storage primitives, including key-value stores, object storage, and durable objects. It further enables a local integration test bed where serverless functions are executed within isolated sandboxes. The toolset covers a broad development surface, including hot-reloading via file-system monito
Implements standard data structures that persist their state to the local filesystem to maintain simulated edge storage across restarts.
This project is a disk-backed key-value store and persistent data structure library for Python. It provides a mechanism for persisting mappings, sets, and queues to the local filesystem to bypass memory limitations and cache expensive function results across threads and processes. The system serves as a cross-process synchronization tool, offering distributed locks, semaphores, and barriers to coordinate shared resource access. It implements advanced caching strategies such as probabilistic stampede prevention, sharded data partitioning to increase throughput, and least-recently-used eviction
Maintains sorted lists, sets, and double-ended queues on the filesystem for permanent storage and fast retrieval.