I want to use JSONB but then I have read this:
JSON
The JSON data type works better than JSONB when:
You have to perform a lot of INSERT operations
You do not expect to perform complex queries on your JSON data
You need to preserve the original JSON data indentation and format
So in my case I have a lot of insert operations but also a lot of reads/updates.
So what to use now? It is an e-commerce application.
And has JSONB any drawbacks or it is not good for e-commerce structure?