PostgreSQL as Schemaless Database [pdf]
wiki.postgresql.org
PostgreSQL as Schemaless Database [pdf]
1–10 of 90 posts
Re: PostgreSQL as Schemaless Database [pdf]
#2Re: PostgreSQL as Schemaless Database [pdf]
#3Re: PostgreSQL as Schemaless Database [pdf]
#4would it be possible to build an extension to expose a mongo compatible interface in postgres - essentially being able to use all the ORM/code built around mongo for postgres, seamlessly.
Re: PostgreSQL as Schemaless Database [pdf]
#5Re: PostgreSQL as Schemaless Database [pdf]
#6YMMV, but we've yet to come across an instance where a pure document DB was necessary or desired, even to store documents (which from my perspective seems nothing more than a flattened EAV model).
Re: PostgreSQL as Schemaless Database [pdf]
#7When the benchmark shows postgres can do the same as mongo, only faster, then why aren't we seeing more hybrid solutions? Online retailers would be better off using relational storage for monetary transactions and time series, and json storage for document like data.
Re: PostgreSQL as Schemaless Database [pdf]
#8Re: PostgreSQL as Schemaless Database [pdf]
#9This is pretty much the reason we're using Postgres for our document storage. Admittedly, our doc store isn't really extensive and it's mostly for internal use (with limited client access), but we just didn't see why it was necessary to go with a new database when the existing stack worked well. YMMV, but we've yet to come across an instance where a pure document DB was necessary or desired, even to store documents (…