You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently FROST stores all JSON content in text columns, meaning that to filter on it, PostgreSQL has to parse the text to json each time. This can be improved by using jsonb columns.
The text was updated successfully, but these errors were encountered:
Interestingly, some queries are slower on JSONB columns than on text columns. It seems that this is because DISTINCT is slower on JSONB columns than on TEXT columns. If I take the JSONB column out of the result set of such a query, by doing a $select=name,id, then the result is a lot faster:
Currently FROST stores all JSON content in text columns, meaning that to filter on it, PostgreSQL has to parse the text to json each time. This can be improved by using jsonb columns.
The text was updated successfully, but these errors were encountered: