File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,19 @@ search is applied. This method of searching allows you to find work orders
57
57
quickly and allows for partial string matches across all text in the run logs
58
58
and across the "keys" and "values" of your dataclips.
59
59
60
+ :::caution Very large/complex input dataclips may not be indexed
61
+
62
+ It's not currently possible to create ` ts_vector ` indexes larger than 1MB, and
63
+ as a result very large or complex input dataclips may not appear in search
64
+ results. This typically won't happen until you're nearing 10MB of JSON, but the
65
+ number of distinct lexemes & positions in your JSON will impact the final index
66
+ size.
67
+
68
+ More at the Postgres
69
+ [ "text search limitations" docs page] ( https://www.postgresql.org/docs/current/textsearch-limitations.html ) .
70
+
71
+ :::
72
+
60
73
Partial string matching works best at the start of words, so if you're looking
61
74
for items matching ` "newPatient" ` it's better to search for ` "newPat" ` than for
62
75
` "tient" ` . (When in doubt, whole words or IDs produce the best results.)
You can’t perform that action at this time.
0 commit comments