350
See MongoDB
(lemmy.world)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Mongodb is not actually faster. Postgres still beats it in any benchmark that matters.
Nothing is ever actually schema-less. There is merely explicit and implicit schemas. If you don't want to bother encoding the schema as proper columns and instead want the schema to remain implicitly encoded in JSON, Postgres'
jsonb
columns do a better job of that than any NoSQL database does.