Django 1.8 provides HStoreField and Django 1.9 will provide JSONField (which uses jsonb) for PostgreSQL.
My understanding is that hstore is faster than json, but does not allow nesting and only allows strings.
When should one be used over the other? Should one be preferred over the other? Is hstore still the clear winner in performance compared to jsonb?