Hacker News new | ask | show | jobs
by steve_adams_86 3034 days ago
I think sarcastic. Psql has great support for json - they were probably taking advantage of it. If you've already got psql set up in your project and have minimal json storage requirements, it can be all you need. You also gain the possibility of retaining some normalization of the data if necessary, which is a lot more complicated if you throw it all in an entirely different database.
1 comments

Small nit: psql is the command line client bundled with Postgres (PostgreSQL). And yeah, the JSON/JSONB support in Postgres is pretty nifty. Postgres 10 added full text search for JSON/JSONB columns.
Oh geez, you're right. It's really the only way I use postgres so I kind of equated the names, but yeah, different tools.