Postgres JSON Support
Comments discuss PostgreSQL's JSON and JSONB features for storing, querying, and indexing semi-structured data, often recommending it as an alternative to NoSQL databases like MongoDB.
Activity Over Time
Top Contributors
Keywords
Sample Comments
Have you considered using Postgres with JSONB?
The comment you're replying to mentions that Postgres can do JSON.
Postgres and probably others support JSON these days.
Why not just use Postgres, set a field as jsonb, done?
I'm guessing you're already aware, but for anyone that isn't - Postgres supports JSON as well https://www.postgresql.org/docs/10/static/datatype-json.html
the json support is fairly recent and doesn't support operating directly on the data yet (e.g. you have to create functional indexes through plv8js and you can't directly query on the document's content as you can with array, xml or hstore columns)
Postgres has very sophisticated JSON querying and storage.
have you tried using the postgres json data type? it's a joke.
Right, but you could just build that in Postgres with JSONB
Would PostgreSQL + JSONB work for you there?