3 Repos
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.
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.
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.
Ktorm ist ein leichtgewichtiges Object-Relational-Mapping-Framework für Kotlin, das eine typsichere SQL-DSL (Domain-Specific Language) und funktionale Sequenz-APIs für die Datenbankinteraktion bietet. Es ermöglicht Entwicklern, Datenbankschemata zu definieren und relationale Tabellen auf schnittstellenbasierte Objekte abzubilden, wodurch sichergestellt wird, dass Datenpersistenz und -abruf durch stark typisierte Ausdrücke gehandhabt werden. Das Framework zeichnet sich durch die Verwendung eines funktionalen, sammlungsartigen Ansatzes für die Abfragekonstruktion aus, der es Entwicklern ermöglicht, Operationen wie Filtern, Sortieren und Aggregieren unter Verwendung idiomatischer Sprachmuster zu verketten. Durch den Einsatz von Lazy-Sequence-Evaluation stellt die Bibliothek sicher, dass Datenbankoperationen zurückgestellt werden, bis Daten explizit abgerufen werden, was die Leistung und Speichernutzung während des Datensatzabrufs optimiert. Das System deckt ein umfassendes Spektrum an Datenbankverwaltungsfunktionen ab, einschließlich automatisierter Join-Operationen, Ergebnis-Pagination und Entity-Lebenszyklusmanagement. Es unterstützt komplexe Schemadefinitionen und benutzerdefinierte Typzuordnungen und bietet Tools zur Synchronisation von In-Memory-Objektzuständen mit persistenten Datenbankdatensätzen, während die Schemakonsistenz durch deklarative Metadaten gewahrt bleibt.
Provides functional APIs for chaining database operations using idiomatic collection-style patterns.