Database OR Array
- by rezoner
What is the exact point of using external database system if I have simple relations
(95% querries are dependant on ID).
I am storing users and their stats.
Why would I use external database if I can have neat constructions like:
db.users[32] = something
Array of 500K users is not that big effort for RAM
Pros are:
no problematic…