With Data being cached so often now and the database is only being accessed when there is new data (and then that data is cached lol) is there even a real performance difference for using Int primary keys vs UUID primary keys.
For example, lets assume im building NetFlix. A new movie gets added to the database, and the movie listing along with associated data is put into a cache.
The user search's for a movie (a search server handles this), then finds a listing, clicks on it and the data is retrieved from the cache.
In this entire process the database is never read.
What are your thoughts?