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.
यह Go के लिए एक इन-मेमोरी B-Tree डेटा स्ट्रक्चर कार्यान्वयन है। यह एक मेमोरी-रेसिडेंट संग्रह प्रदान करता है जो कुशल पुनर्प्राप्ति, संशोधन और सॉर्ट किए गए की-वैल्यू मैप्स के प्रबंधन को सक्षम करने के लिए सॉर्ट किए गए तत्वों को बनाए रखता है। यह प्रोजेक्ट ऑर्डर्ड म्यूटेबल कलेक्शंस और सॉर्ट किए गए की-वैल्यू स्टोर्स का समर्थन करता है, जो कुंजियों के सॉर्ट ऑर्डर को संरक्षित करते हुए तेज़ लुकअप, इंसर्शन और डिलीशन की अनुमति देता है। यह सॉर्ट की गई मेमोरी संरचनाओं के भीतर रेंज सर्चिंग के लिए क्षमताएं प्रदान करता है और सेल्फ-बैलेंसिंग नोड स्प्लिटिंग और रिकर्सिव बाइनरी सर्च के माध्यम से डेटासेट के संगठन को बनाए रखता है।
Provides a BTreeMap-like interface for key-value pairs that preserves key order.