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

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

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

5 रिपॉजिटरी

Awesome GitHub RepositoriesQuery Optimization Engines

Systems that defer or reorder data processing operations to improve performance on large datasets.

Distinguishing note: Focuses on the execution strategy of data queries rather than the storage or retrieval mechanism itself.

Explore 5 awesome GitHub repositories matching data & databases · Query Optimization Engines. Refine with filters or upvote what's useful.

Awesome Query Optimization Engines GitHub Repositories

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

    ClickHouse/ClickHouse

    48,229GitHub पर देखें↗

    ClickHouse is a high-performance, columnar analytical database designed for real-time query execution and large-scale data aggregation. It functions as a distributed data warehouse capable of processing petabytes of information, while also providing an embedded engine that integrates directly into applications for native query capabilities without external dependencies. The system is built to handle high-throughput ingestion and complex analytical workloads, delivering millisecond-level latency for interactive dashboards and operational monitoring. The platform distinguishes itself through ad

    Transforms complex analytical operations into optimized, multi-threaded execution plans to minimize resource usage during data processing.

    C++aianalyticsbig-data
    GitHub पर देखें↗48,229
  • nushell/nushellnushell का अवतार

    nushell/nushell

    39,743GitHub पर देखें↗

    Nushell is a cross-platform shell and programming language designed to treat all input and output as structured data rather than raw text streams. By enforcing data types and command signatures, it provides a consistent environment for building robust, pipeline-oriented workflows. The shell allows users to chain commands that pass structured objects between stages, enabling complex data processing and automation tasks that remain predictable across different operating systems. What distinguishes the project is its focus on interactive data exploration and modular extensibility. Users can quer

    Defers computation of complex data transformations until the final result is requested to optimize performance for large datasets.

    Rustnushellrustshell
    GitHub पर देखें↗39,743
  • rethinkdb/rethinkdbrethinkdb का अवतार

    rethinkdb/rethinkdb

    26,996GitHub पर देखें↗

    RethinkDB is a distributed, document-oriented database designed to store and manage JSON-formatted data across scalable clusters. It utilizes a custom log-structured storage engine with B-Tree indexing to ensure high-performance disk I/O and data persistence. The system maintains high availability through automatic sharding and replication, employing a primary-replica voting consensus mechanism to handle node failures and ensure consistent cluster operations. A defining characteristic of the platform is its reactive changefeed engine, which allows applications to subscribe to live data update

    RethinkDB executes queries on the server with automatic parallelization across CPU cores and cluster nodes, while using lazy evaluation to minimize resource consumption.

    C++
    GitHub पर देखें↗26,996
  • postgres/postgrespostgres का अवतार

    postgres/postgres

    20,076GitHub पर देखें↗

    PostgreSQL is an object-relational database management system designed for the persistent storage and retrieval of structured information. It functions as an ACID-compliant database server, utilizing standard query language protocols to maintain data consistency and reliability across large-scale application datasets. The system distinguishes itself through an extensible architecture that allows for the definition of custom data types, operators, and indexing methods. It employs multi-version concurrency control to enable simultaneous read and write operations without blocking, supported by a

    Evaluates multiple execution plans using statistical data to determine the most efficient path for retrieving information.

    C
    GitHub पर देखें↗20,076
  • ravendb/ravendbravendb का अवतार

    ravendb/ravendb

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

    RavenDB is a multi-model NoSQL document database designed for high-performance, ACID-compliant data storage. It persists structured information as schema-flexible JSON documents and utilizes a unit-of-work session pattern to track entity changes and batch modifications into atomic transactions. The platform is built on a distributed architecture that supports horizontal scaling through sharding and ensures high availability via multi-node, master-to-master cluster replication. The database distinguishes itself through a self-optimizing query engine that automatically creates and maintains ind

    Analyzes filtering criteria at runtime to automatically create and maintain optimal indexes for data retrieval.

    C#csharpdatabasedocument-database
    GitHub पर देखें↗3,961
  1. Home
  2. Data & Databases
  3. Query Optimization Engines

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

  • Automatic Indexing EnginesEngines that automatically create and maintain indexes based on runtime query patterns. **Distinct from Query Optimization Engines:** Distinct from general query optimization engines: focuses on the automated creation of indexes based on runtime usage, not just execution plan optimization.