awesome-repositories.com
Blog
awesome-repositories.com

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

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

Awesome GitHub RepositoriesFunctional Query Interfaces

APIs that allow developers to write database queries using functional programming paradigms.

Distinguishing note: Focuses on the syntax and paradigm of query construction rather than the underlying execution engine.

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

Awesome Functional Query Interfaces 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.
  • rethinkdb/rethinkdbAvatar de rethinkdb

    rethinkdb/rethinkdb

    26,996Voir sur 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 writes functional-style queries using language constructs like lambdas, which the driver converts into optimized server-side operations for cluster evaluation.

    C++
    Voir sur GitHub↗26,996
  • simeji/jidAvatar de simeji

    simeji/jid

    7,132Voir sur GitHub↗

    jid is an interactive JSON query tool and data explorer for the terminal. It provides a keyboard-driven interface to navigate, evaluate, and extract information from nested JSON structures using dot-notation paths and real-time autocomplete. The tool integrates JMESPath to support complex data filtering and transformation. It distinguishes itself through a type-aware assistance system that provides context-aware function hints and argument templates based on the data type of the selected JSON node. The capability surface includes a terminal user interface with syntax highlighting, predictive

    Suggests functions and usage hints with automatically filled argument templates for complex queries.

    Gocligogolang
    Voir sur GitHub↗7,132
  • kotlin-orm/ktormAvatar de kotlin-orm

    kotlin-orm/ktorm

    2,336Voir sur GitHub↗

    Ktorm is a lightweight object-relational mapping framework for Kotlin that provides a type-safe SQL domain-specific language and functional sequence APIs for database interaction. It enables developers to define database schemas and map relational tables to interface-based objects, ensuring that data persistence and retrieval are handled through strongly-typed expressions. The framework distinguishes itself by utilizing a functional, collection-style approach to query construction, allowing developers to chain operations like filtering, sorting, and aggregation using idiomatic language patter

    Provides functional APIs for chaining database operations using idiomatic collection-style patterns.

    Kotlinkotlinktormorm
    Voir sur GitHub↗2,336
  1. Home
  2. Data & Databases
  3. Functional Query Interfaces

Explorer les sous-tags

  • Type-Aware Query AssistanceProviding usage hints and argument templates based on the type of the queried data. **Distinct from Functional Query Interfaces:** Focuses on interactive assistance during query authoring rather than the functional API itself