We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f056ac commit adef6ccCopy full SHA for adef6cc
docs/references/api/tables_views.rst
@@ -217,6 +217,15 @@ This allows using the ``fts`` operator on ``text`` and ``json`` types out of the
217
curl --get "http://localhost:3000/people" \
218
-d "my_json_column=not.phfts(english).The%20Fat%20Cats"
219
220
+.. important::
221
+
222
+ To ensure this operation is fast, you need to create an index on the expression:
223
224
+ .. code-block:: postgres
225
226
+ CREATE INDEX idx_people_col ON people
227
+ USING GIN (to_tsvector(my_text_column));
228
229
.. _v_filter:
230
231
Vertical Filtering
0 commit comments