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
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,8 @@ Specify the database connection that should be used to access indexed documents
58
58
// You may want to update index documents directly in PostgreSQL (i.e. via triggers).
59
59
// In this case you can set this value to false.
60
60
'maintain_index' => true,
61
+
// You can override the default text search configuration. Null uses the default.
62
+
'search_configuration' => null,
61
63
],
62
64
...
63
65
```
@@ -66,7 +68,7 @@ Specify the database connection that should be used to access indexed documents
66
68
67
69
### Configuring PostgreSQL
68
70
69
-
Make sure that an appropriate [default text search configuration](https://www.postgresql.org/docs/9.5/static/runtime-config-client.html#GUC-DEFAULT-TEXT-SEARCH-CONFIG) is set globbaly (in `postgresql.conf`), for a particular database (`ALTER DATABASE ... SET ...`) or alternatively set `default_text_search_config` in each session.
71
+
Make sure that an appropriate [default text search configuration](https://www.postgresql.org/docs/9.5/static/runtime-config-client.html#GUC-DEFAULT-TEXT-SEARCH-CONFIG) is set globbaly (in `postgresql.conf`), for a particular database (`ALTER DATABASE ... SET default_text_search_config TO ...`) or alternatively set `default_text_search_config` in each session.
0 commit comments