|
|
|
|
|
by golergka
1859 days ago
|
|
> Databases are a bad place to be storing JSON, which is a good interface and a bad storage standard. That's why in 99% of cases, Postgresql uses jsonb as storage standard, which is binary and compressed. > This is needless complexity engineered by people who insist on relearning schemas from scratch No, this is the right tool for situations where schemas are polymorphic, fluid, or even completely absent (like raw third-party data). I love SQL and following normal forms, and it is the right tool for most situations, but not all. |
|