Re: Django 1.9 - JSONField

2015-07-11 Thread Shai Berger
On Thursday 09 July 2015 00:18:09 Christopher Allan Webber wrote: > [...] It would > be nice to get this included into Django itself, and have it noted as a > Postgres-only feature. Then if other databases can eventually catch up, > include them alongside it. > I have to repeat Marc's implied qu

Re: Django 1.9 - JSONField

2015-07-08 Thread Christopher Allan Webber
Postgres' jsonb has some pretty unique features that I'm not sure any other databases are going to implement anytime soon, and even if they did, it would probably be in a fairly incompatible way, yeah? It would be nice to get this included into Django itself, and have it noted as a Postgres-only f

Re: Django 1.9 - JSONField

2015-07-08 Thread Collin Anderson
Sounds good to me, though I think we should wait until there's actually native JSON support in one of the other databases. MariaDB has "dynamic columns" which I think is more similar to Postgres's hstore. On Wednesday, July 8, 2015 at 4:38:42 AM UTC-4, Григорий Крамаренко wrote: > > +1 > I'm wai

Re: Django 1.9 - JSONField

2015-07-08 Thread Григорий Крамаренко
+1 I'm waiting too and hope for a positive decision. вторник, 7 июля 2015 г., 23:57:37 UTC+10 пользователь lza...@ucs.br написал: > > > Hi all, > > I'd like to know why this feature will be only available on postgres and > not as a Field for any database, like this product? This Field would be >

Re: Django 1.9 - JSONField

2015-07-07 Thread Marc Tamlyn
Agreed, as other databases catch up with the feature set offered in contrib.postgres I think moving this field into core is likely - it's a field that a number of databases are working on adding. It's worth noting that the PG implementation is 9.4+ only, the 9.2/9.3 implementation of json should no

Re: Django 1.9 - JSONField

2015-07-07 Thread Michael Manfre
The django-contrib-postgres JSONField takes advantage of JSON being a native type that allows it's data fields to be used by the ORM, instead of just a text field that wraps json.dumps() and json.loads(). All of the core supported backends seem to have some flavor of native JSON support (MS SQL is

Django 1.9 - JSONField

2015-07-07 Thread lzanuz
Hi all, I'd like to know why this feature will be only available on postgres and not as a Field for any database, like this product? This Field would be very usefull for many users I think. https://github.com/bradjasper/django-jsonfield https://docs.djangoproject.com/en/dev/releases/1.9/#djan