2 dépôts
Optimizations that restrict database fetches to only the specific columns requested by the API client.
Distinct from Database Performance Optimizers: Focuses on field-level projection to reduce data transfer, whereas Database Performance Optimizers is a broad category for general efficiency.
Explore 2 awesome GitHub repositories matching data & databases · Column Selection Optimizations. Refine with filters or upvote what's useful.
This project is a curated collection of guidelines and technical resources designed to improve C++ code safety, maintainability, and performance. It provides a comprehensive set of coding standards and best practices for establishing consistent naming, formatting, and structural patterns across C++ codebases. The guide offers specific technical advice on performance optimization, including methods for minimizing object copying, optimizing memory allocation, and reducing compilation cycles. It also provides a directory of tooling recommendations for implementing static analysis, fuzz testing,
Provides technical advice on maximizing processor register use by choosing between passing by value or constant reference.
Pothos is a code-first GraphQL schema builder and framework designed for type-safe development. It allows developers to construct schemas using typed definitions in TypeScript, eliminating the need for external code generation steps. The framework distinguishes itself through a dedicated data mapper that connects GraphQL types to relational databases and ORMs, such as Prisma, while optimizing query resolution. It provides a full implementation of the Relay specification, including global object identification and cursor-based pagination. The project covers several core capability areas, incl
Optimizes performance by ensuring only the specifically requested columns are fetched from the database.