2 مستودعات
Accesses stored key-value pairs through a BTreeMap-like interface that preserves key order and supports range queries.
Distinct from Ordered Data Structures: Distinct from Ordered Data Structures: focuses on the access interface for ordered data, not just the preservation of insertion order.
Explore 2 awesome GitHub repositories matching data & databases · Ordered Map Data Access. Refine with filters or upvote what's useful.
redb is an embedded key-value store and ACID-compliant storage engine. It functions as a persistent storage system for saving and retrieving data as key-value pairs within a tree structure. The engine is built as an MVCC transactional database, utilizing multi-version concurrency control to manage simultaneous reads and writes without blocking. It employs a single-writer multi-reader model to ensure data consistency while allowing multiple threads to access the store. The system provides persistent state management and atomic transaction management to prevent data corruption during crashes.
Provides ordered map data access through a BTreeMap interface with range query support.
هذا تنفيذ لهيكل بيانات B-Tree في الذاكرة للغة Go. يوفر مجموعة مقيمة في الذاكرة تحافظ على العناصر مرتبة لتمكين الاسترجاع الفعال، والتعديل، وإدارة خرائط المفتاح والقيمة المرتبة. يدعم المشروع مجموعات قابلة للتغيير مرتبة ومخازن مفتاح-قيمة مرتبة، مما يسمح بعمليات بحث وإدراج وحذف سريعة مع الحفاظ على ترتيب فرز المفاتيح. يوفر قدرات للبحث في النطاق داخل هياكل الذاكرة المرتبة ويحافظ على تنظيم مجموعات البيانات من خلال تقسيم العقد ذاتي التوازن والبحث الثنائي العودي.
Provides a BTreeMap-like interface for key-value pairs that preserves key order.