Comment on What are some of the best optimizations you applied to your code?
hperrin@lemmy.world 1 year ago
I don’t know if this counts, but making sure not a single query in my app results in a full table scan in MySQL made a huge difference.
Comment on What are some of the best optimizations you applied to your code?
hperrin@lemmy.world 1 year ago
I don’t know if this counts, but making sure not a single query in my app results in a full table scan in MySQL made a huge difference.
AlmightySnoo@lemmy.world 1 year ago
Lemmy is probably a live example of how sometimes going for a “faster language” like Rust isn’t going to magically make a bad SQL database design better or slow queries faster: github.com/LemmyNet/lemmy/issues/2877
haui_lemmy@lemmy.giftedmc.com 1 year ago
I read through most of this and it was very informative. Thank you very much.
peereboominc@lemm.ee 1 year ago
That was a good read. Thanks for the link.