Demonstrates Gilhari's INLINE mapping for efficient object-relational mapping, storing child JSON object attributes directly within the parent's database table to optimize one-to-one relationship queries.
Sponsored
This microservice exemplifies Gilhari's powerful INLINE mapping feature, a core optimization for its Docker-compatible microservice framework. It illustrates how to configure and leverage INLINE relationships to store child JSON object attributes directly within the database row of their parent object. This approach eliminates the need for expensive database joins, significantly boosting query performance for one-to-one relationships, and showcases how Gilhari automates REST APIs and database schema setup for such optimized persistence without any manual coding.
主要功能
01Child object attributes stored directly within the parent's database table row
02Automatic database schema setup based on ORM specification
03INLINE mapping for performance-optimized one-to-one relationships
040 GitHub stars
05INLINE attributes are always returned, even with shallow queries (deep=false)
06Automated REST API generation for JSON CRUD operations
使用案例
01Building high-performance RESTful microservices for tightly coupled one-to-one object relationships
02Optimizing data access for JSON objects where child attributes are frequently retrieved with their parents
03Learning and applying Gilhari's INLINE mapping for efficient JSON object persistence with relational databases