logoalt Hacker News

giancarlostoroyesterday at 7:15 PM2 repliesview on HN

MySQL doesnt eat up all 8GB of my system when I need to query a table with indexed values, MongoDB seems to eat it all up.


Replies

vscode-restyesterday at 7:36 PM

You paid one hundred bucks for that eight gb of ram, do you really want it to just sit there unused?

show 1 reply
hilariouslyyesterday at 8:11 PM

If the data is < ram size and if you read that data again and its off disk again its the slowest it can possibly be, there's a reason most databases implement a buffer cache (actually making writes insanely faster as well) but yeah, MySQL is generally not a very good operational database with all the ones I have tinkered with.