Tag

Eager Loading

0 views collected around this technical thread.

Code Ape Tech Column
Code Ape Tech Column
Jul 14, 2023 · Backend Development

Understanding Ribbon Load Balancing and Eager Load Mode in Feign Clients

This article explains how Feign relies on Ribbon for remote calls, details Ribbon's load‑balancing mechanisms, various balancing rules, and demonstrates how enabling Ribbon's eager‑load mode can pre‑warm clients to avoid the latency of the first request.

Eager LoadingJavaRibbon
0 likes · 6 min read
Understanding Ribbon Load Balancing and Eager Load Mode in Feign Clients
Laravel Tech Community
Laravel Tech Community
Jun 13, 2020 · Backend Development

Understanding Eager Loading in Laravel Eloquent

This article explains Laravel Eloquent's eager loading techniques, demonstrating how to replace lazy-loaded N+1 queries with the with() method, preload multiple or nested relationships, select specific columns, apply constraints, and use lazy eager loading methods like load and loadMissing, all illustrated with PHP code examples.

BackendEager LoadingEloquent
0 likes · 6 min read
Understanding Eager Loading in Laravel Eloquent