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

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

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

3 रिपॉजिटरी

Awesome GitHub RepositoriesOperation Timestamping

Temporal logging of discrete state changes to preserve operation order and timing.

Distinguishing note: Focuses on CRDT operation timestamps rather than file system or media stream timestamps.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Operation Timestamping. Refine with filters or upvote what's useful.

Awesome Operation Timestamping GitHub Repositories

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

    MaterializeInc/materialize

    6,314GitHub पर देखें↗

    Materialize is a streaming SQL database that continuously ingests live data from sources such as Kafka, Redpanda, PostgreSQL, and MySQL, and incrementally maintains materialized views. It provides a PostgreSQL-compatible query engine that accepts standard SQL over the PostgreSQL wire protocol, enabling any existing SQL client or BI tool to query real-time data. The system also includes a Model Context Protocol (MCP) server that exposes live materialized view data to AI agents, providing fresh context without polling. Materialize distinguishes itself through its ability to offer configurable c

    Assigns a shared logical timestamp to all incoming data from external sources for consistent snapshots.

    Rust
    GitHub पर देखें↗6,314
  • loro-dev/loroloro-dev का अवतार

    loro-dev/loro

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

    Loro is a conflict-free replicated data type (CRDT) framework and collaborative state engine designed for building real-time collaborative applications. It provides a distributed data synchronizer that enables multiple users to edit shared documents and complex nested structures—such as maps, lists, trees, and counters—with automatic state convergence without requiring a central server. The project distinguishes itself through a versioned document store that supports branching, forking, and merging via a directed acyclic graph of causal operation history. It enables advanced version control c

    Logs Unix timestamps with each set of changes to preserve the exact time of operations within the causal history.

    Rustcollaborative-editingcrdtlocal-first
    GitHub पर देखें↗5,374
  • segmentio/ksuidsegmentio का अवतार

    segmentio/ksuid

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

    ksuid is a Go implementation of k-sortable unique identifiers. It provides a system for generating globally unique identifiers that maintain a natural chronological order based on their generation timestamp. The project enables the creation of unique keys across distributed systems without a central coordinator. These identifiers are designed for use as database primary keys to maintain index performance and insert efficiency. The library includes capabilities for identifier serialization and parsing, allowing conversion between binary, text, and SQL formats. It also provides command-line to

    Places a high-resolution timestamp at the start of the binary sequence to ensure natural chronological sorting.

    Gocoordinationgogolang
    GitHub पर देखें↗5,260
  1. Home
  2. Software Engineering & Architecture
  3. Operation Timestamping

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

  • Chronological Binary LayoutsBinary data structures that prefix timestamps to ensure natural sorting of the entire sequence. **Distinct from Operation Timestamping:** Distinct from Operation Timestamping by focusing on the layout of the identifier itself rather than logging state changes.
  • Multi-Source Timestamp CoordinatorsAssigns shared logical timestamps to incoming data from multiple external sources for consistent snapshots. **Distinct from Operation Timestamping:** Distinct from Operation Timestamping: focuses on coordinating timestamps across multiple sources for consistent snapshots, not logging discrete state changes.