Comment on What are some of the best optimizations you applied to your code?

agilob@programming.dev ⁨8⁩ ⁨months⁩ ago

Noticed that hibernate session was leaking to Jackson, potentially causing infinite n+1 problem. Changing a few lines of code to lazy loading and fixing the session leak reduced our daily data transfer from DB from 5.6Gb to 170Mb.

Not sure if this was the biggest optimisation, but defin5the dumbest issue.

source
Sort:hotnewtop