awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 रिपॉजिटरी

Awesome GitHub RepositoriesConsistent Read Optimizations

Specialized techniques for ensuring read consistency in distributed systems without incurring the overhead of full log writes.

Distinct from Read Performance Optimizations: Distinct from general read performance optimizations by focusing specifically on maintaining consistency (linearizability) without log entries.

Explore 2 awesome GitHub repositories matching data & databases · Consistent Read Optimizations. Refine with filters or upvote what's useful.

Awesome Consistent Read Optimizations GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • lni/dragonboatlni का अवतार

    lni/dragonboat

    5,308GitHub पर देखें↗

    Dragonboat is a Go implementation of the Raft consensus protocol designed to maintain consistent state across a distributed cluster of nodes. It provides a library for building distributed state machines that ensure data integrity and fault tolerance during system failures. The project distinguishes itself through a multi-group Raft implementation, which partitions data across independent consensus groups to distribute workloads and increase overall system processing capacity. It also incorporates mutual TLS to encrypt inter-node communication and verify the identity of cluster members. The

    Implements read-path optimizations that verify the latest committed index to ensure consistency without generating new log entries.

    Goconsensusdistributed-consensusdistributed-storage
    GitHub पर देखें↗5,308
  • sofastack/sofa-jraftsofastack का अवतार

    sofastack/sofa-jraft

    3,806GitHub पर देखें↗

    sofa-jraft is a Java implementation of the Raft consensus algorithm. It serves as a distributed consensus engine and linearizable state machine designed to ensure high availability and data consistency across a cluster of nodes. The project provides a replicated key-value store and a coordination engine for managing distributed state. It distinguishes itself through support for multi-group consensus sharding to distribute traffic and a service provider interface that allows for custom log storage and entry encoding implementations. The system covers a wide range of distributed capabilities,

    Provides optimized read indices to guarantee linearizable reads without the overhead of full log writes.

    Javaconsensusdistributed-consensus-algorithmsjava
    GitHub पर देखें↗3,806
  1. Home
  2. Data & Databases
  3. Concurrent Write Optimizations
  4. Data Write Throughput Optimizers
  5. S3 Throughput Optimizers
  6. Read Performance Optimizations
  7. Consistent Read Optimizations

सब-टैग एक्सप्लोर करें

  • Multi-Version Concurrency ControlProvides consistent data snapshots using undo logs to avoid blocking read operations. **Distinct from Consistent Read Optimizations:** Distinct from Consistent Read Optimizations: focuses on the MVCC mechanism of using undo logs for non-blocking reads.