• 0 Posts
  • 27 Comments
Joined 2 years ago
cake
Cake day: August 7th, 2023

help-circle









  • My problem is there are so few good movies coming out. I’m completely over the superhero crap. I don’t want to see the next random Star Wars thing. I don’t want a remake of a classic film I loved when I was younger.

    There are some originals coming out, and that makes me happy, but I think the key is having good movies people actually want to see.

    That said I’m interested in seeing Sinners, but I’ll probably wait to stream it, lol.






  • “They simply go through the whole table”… that’s the problem. A full table scan should be avoided at all costs.

    Learn: how to run and read an explain plan, indexes, keys, constraints, and query optimization (broadly you want to locate individual records as quickly as possible by using the most selective criteria).

    You also need to learn basic schema design and to familiarize yourself with normalization.

    Avoid processing huge result sets in your application. The database is good at answering questions about data it contains. It isn’t just a big bucket to throw data into to retrieve later.