|
|
|
|
|
by amunicio
2952 days ago
|
|
Warning: I haven't used MongoDB in several years, so this info can be outdated! The main advantage of using JSONB on Postgres over MongoDB is that you can create tables that mix regular fields (varchar, number, date, etc...) with JSONB fields.
Then you can do joins of your table with other tables (no need to map/reduce or other insane processing for a simple join). |
|