awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesBlogPlan du site
ProjetÀ proposPresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.comBlog
Catégories

6 dépôts

Awesome GitHub RepositoriesQuery Batching

Mechanisms for grouping multiple database operations into a single request to reduce network overhead.

Distinct from Batch Request Execution: Distinct from API-level request execution or centralized tenant updates; focuses on database query batching for throughput.

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

Awesome Query Batching GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • mycatapache/mycat-serverAvatar de MyCATApache

    MyCATApache/Mycat-Server

    9,529Voir sur GitHub↗

    Mycat-Server is a MySQL database middleware system that functions as a sharding proxy, distributed database coordinator, and high availability manager. It acts as a proxy layer that routes SQL traffic between applications and multiple backend MySQL database instances to enable horizontal scaling. The system coordinates distributed transactions, generates global unique sequences to prevent primary key collisions, and executes distributed join queries across multiple database shards. It includes a load balancer that performs read-write splitting by directing traffic between primary and slave no

    Implements batch processing of data operations to minimize communication overhead between the client and server.

    Java
    Voir sur GitHub↗9,529
  • lancedb/lancedbAvatar de lancedb

    lancedb/lancedb

    9,031Voir sur GitHub↗

    LanceDB is a vector database and columnar data store designed to function as a versioned dataset manager and vector search engine. It serves as a high-performance backend for indexing and retrieving high-dimensional embeddings, providing the foundation for machine learning data pipelines. The system distinguishes itself through a combination of cloud-native object storage and immutable version tracking, allowing for data time-travel and reproducible AI experiments. It integrates hybrid search capabilities, merging dense vector similarity with BM25 full-text search and SQL-like scalar filters

    Processes multiple query vectors in a single batch to increase throughput and reduce overhead.

    HTMLapproximate-nearest-neighbor-searchimage-searchnearest-neighbor-search
    Voir sur GitHub↗9,031
  • vendurehq/vendureAvatar de vendurehq

    vendurehq/vendure

    7,924Voir sur GitHub↗

    Vendure is a Node.js e-commerce engine and headless commerce framework built with NestJS and TypeScript. It serves as a multi-channel commerce platform that manages product catalogs, orders, and customers via a strongly typed GraphQL API. The platform is distinguished by its highly extensible architecture, featuring a customizable administrative dashboard where developers can inject custom React components and entity views. It supports multi-channel commerce, allowing the isolation of products, currencies, and regional catalogs from a single unified backend. The engine covers a broad range o

    Groups multiple data requests into single batches to eliminate N+1 query problems and improve API performance.

    TypeScriptecommerceecommerce-apiecommerce-framework
    Voir sur GitHub↗7,924
  • neelance/graphql-goAvatar de neelance

    neelance/graphql-go

    4,756Voir sur GitHub↗

    graphql-go est une bibliothèque serveur pour implémenter des serveurs GraphQL en Go. Elle fournit l'infrastructure de base pour le parsing de schéma, le mapping de résolveurs et l'exécution de requêtes. La bibliothèque inclut un moteur de souscription qui permet le streaming de données en temps réel vers les clients en utilisant le transport WebSocket. Elle dispose également d'un traceur d'exécution pour surveiller et profiler les performances des requêtes via des outils de télémétrie. Le système gère la consommation de ressources et la stabilité via un optimiseur de requêtes qui impose des restrictions de profondeur et contrôle la concurrence des résolveurs. Il prend en charge l'optimisation de la récupération de données via le pré-fetching au niveau du champ pour réduire les requêtes répétitives en base de données et utilise un mécanisme de transformation panic-to-error pour maintenir la stabilité du serveur.

    Reduces database load by grouping multiple operations into single requests through resolver tree analysis.

    Go
    Voir sur GitHub↗4,756
  • kuzudb/kuzuAvatar de kuzudb

    kuzudb/kuzu

    3,965Voir sur GitHub↗

    Kùzu is an embedded property graph database engine designed for high-performance analytical queries and local data management. It operates as a library within the host application process, utilizing a columnar-based storage architecture and just-in-time query compilation to execute complex graph traversals and pattern matching efficiently. By mapping database files directly into system memory, it ensures data durability and high-speed access while maintaining ACID-compliant transactional integrity. The engine distinguishes itself by integrating vector similarity search and full-text search di

    Processes multiple semicolon-separated queries in a single execution call for improved throughput.

    C++cypherdatabaseembeddable
    Voir sur GitHub↗3,965
  • google/osv.devAvatar de google

    google/osv.dev

    2,494Voir sur GitHub↗

    OSV is a distributed database and aggregator of open-source security advisories that uses a standardized vulnerability schema to track security flaws. It functions as a system for collecting and normalizing security data from diverse ecosystems into a single unified format, providing a web API for querying package vulnerabilities and submitting standardized records. The project distinguishes itself through a security advisory distribution service that supports bulk dataset exports via cloud storage buckets and incremental synchronization of security record updates. It also employs sandbox-bas

    Allows retrieving vulnerability IDs and modification dates for a batch of packages in a single request.

    Pythonsecuritysecurity-toolsvulnerability
    Voir sur GitHub↗2,494
  1. Home
  2. Data & Databases
  3. Query Batching

Explorer les sous-tags

  • Vulnerability Package QueriesMechanisms for grouping multiple package vulnerability lookups into a single request to improve throughput. **Distinct from Query Batching:** Distinct from Query Batching: specifically targets the retrieval of vulnerability IDs and modification dates for batches of software packages.