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,229在 GitHub 上查看↗

    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,743在 GitHub 上查看↗

    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,996在 GitHub 上查看↗

    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,076在 GitHub 上查看↗

    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,961在 GitHub 上查看↗

    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.