3 مستودعات
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 هو إطار عمل خفيف الوزن لرسم خرائط الكائنات العلائقية (ORM) لـ Kotlin يوفر لغة خاصة بالمجال (DSL) آمنة للأنواع لـ SQL وواجهات برمجة تطبيقات تسلسل وظيفية للتفاعل مع قاعدة البيانات. يتيح للمطورين تحديد مخططات قاعدة البيانات وربط الجداول العلائقية بكائنات قائمة على الواجهة، مما يضمن التعامل مع استمرارية البيانات واسترجاعها من خلال تعبيرات مكتوبة بقوة. يتميز إطار العمل باستخدام نهج وظيفي على غرار المجموعات لبناء الاستعلامات، مما يسمح للمطورين بربط عمليات مثل التصفية، والفرز، والتجميع باستخدام أنماط لغوية مألوفة. ومن خلال استخدام تقييم التسلسل الكسول (lazy sequence evaluation)، تضمن المكتبة تأجيل عمليات قاعدة البيانات حتى يتم الوصول إلى البيانات صراحة، مما يحسن الأداء واستخدام الذاكرة أثناء استرجاع السجلات. يغطي النظام نطاقاً شاملاً من قدرات إدارة قاعدة البيانات، بما في ذلك عمليات الربط الآلية، وترقيم صفحات النتائج، وإدارة دورة حياة الكيانات. يدعم النظام تعريفات المخطط المعقدة وتعيين الأنواع المخصصة، ويوفر أدوات لمزامنة حالات الكائنات في الذاكرة مع سجلات قاعدة البيانات الدائمة مع الحفاظ على اتساق المخطط من خلال البيانات الوصفية التصريحية.
Provides functional APIs for chaining database operations using idiomatic collection-style patterns.