Sharding with SpringBoot

Understanding Database Sharding Imagine your application has grown so popular that a single database server canโ€™t handle all your data efficiently. Sharding is like splitting your database ...
0 Read More

Spring JPA - @EntityGraph

By default, Spring Data JPA loads related data lazily, which can cause the N+1 problem โ€” one query for the main data and more for each related item. @EntityGraph annotation fixes this by letting you...
0 Read More