Postgres type system is so much better than any other RDBMS that it's a shame NoSQL guys didn't spend more time building on top of it. While their optimizer could use some work here and there it's improving all the time. We are doing some pretty obscure stuff to it and it's serving us well. Oracle on the other hand requires so much attention and special handling with it's type system, that if there were an alternativ…
It seems you could easily get a nosql postgres if you limit yourself to one table with two columns (id, json). Snark apart, it would work quite ok, no?
PostgreSQL 9.3 Beta 1 Released
11–20 of 118 posts
Re: PostgreSQL 9.3 Beta 1 Released
#12The PostgreSQL team just keeps on giving. There is nothing that can stop these guys.
Re: PostgreSQL 9.3 Beta 1 Released
#13How does that work from a computer science point of view?
UPDATE: Found this talk about it from PGCon last year: http://lanyrd.com/2012/pgcon/schdzf/
Re: PostgreSQL 9.3 Beta 1 Released
#14The PostgreSQL team just keeps on giving. There is nothing that can stop these guys.
In that spirit, what are the best resources for getting started and diving in to working with PostgreSQL?
Re: PostgreSQL 9.3 Beta 1 Released
#15Postgres type system is so much better than any other RDBMS that it's a shame NoSQL guys didn't spend more time building on top of it. While their optimizer could use some work here and there it's improving all the time. We are doing some pretty obscure stuff to it and it's serving us well. Oracle on the other hand requires so much attention and special handling with it's type system, that if there were an alternativ…
It seems you could easily get a nosql postgres if you limit yourself to one table with two columns (id, json). Snark apart, it would work quite ok, no?
Re: PostgreSQL 9.3 Beta 1 Released
#16Postgres type system is so much better than any other RDBMS that it's a shame NoSQL guys didn't spend more time building on top of it. While their optimizer could use some work here and there it's improving all the time. We are doing some pretty obscure stuff to it and it's serving us well. Oracle on the other hand requires so much attention and special handling with it's type system, that if there were an alternativ…
It seems you could easily get a nosql postgres if you limit yourself to one table with two columns (id, json). Snark apart, it would work quite ok, no?
Re: PostgreSQL 9.3 Beta 1 Released
#17Postgres type system is so much better than any other RDBMS that it's a shame NoSQL guys didn't spend more time building on top of it. While their optimizer could use some work here and there it's improving all the time. We are doing some pretty obscure stuff to it and it's serving us well. Oracle on the other hand requires so much attention and special handling with it's type system, that if there were an alternativ…
HStore [1] is NoSQL plugin for Postgres. Works great. Been available for a long time too. [1] http://www.postgresql.org/docs/9.0/static/hstore.html
http://www.postgresql.org/docs/devel/static/functions-json.h...
Re: PostgreSQL 9.3 Beta 1 Released
#18The PostgreSQL team just keeps on giving. There is nothing that can stop these guys.
In that spirit, what are the best resources for getting started and diving in to working with PostgreSQL?
I'm lucky enough to work at a company that tends to use Pg as our default RDBMS; speaking strictly as a dev it's a heck of a lot more ergonomic and sophisticated than some of the things I've dealt with.
Re: PostgreSQL 9.3 Beta 1 Released
#19Earlier quoted context omitted.
It seems you could easily get a nosql postgres if you limit yourself to one table with two columns (id, json). Snark apart, it would work quite ok, no?
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)