diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2025-01-14 21:01:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-14 12:01:01 +0000 |
| commit | 71cecdbcf2d46d00ff58634eafec9227f4264b08 (patch) | |
| tree | 8ebf136c9bf61a2d1f36996f596db75c9c0afc4e /.config/docker_example.yml | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-71cecdbcf2d46d00ff58634eafec9227f4264b08.tar.gz sharkey-71cecdbcf2d46d00ff58634eafec9227f4264b08.tar.bz2 sharkey-71cecdbcf2d46d00ff58634eafec9227f4264b08.zip | |
feat(backend): pgroongaに対応(configの構成変更あり) (#14978)
* feat(backend): pgroongaに対応(configの構成変更あり)
* fix CHANGELOG.md
* fix CHANGELOG.md
* add using provider logging
* fix CHANGELOG.md
* Update CHANGELOG.md
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to '.config/docker_example.yml')
| -rw-r--r-- | .config/docker_example.yml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/.config/docker_example.yml b/.config/docker_example.yml index 0f5ba9696d..ad9ae4fd9a 100644 --- a/.config/docker_example.yml +++ b/.config/docker_example.yml @@ -114,9 +114,27 @@ redis: # #prefix: example-prefix # #db: 1 -# ┌───────────────────────────┐ -#───┘ MeiliSearch configuration └───────────────────────────── +# ┌───────────────────────────────┐ +#───┘ Fulltext search configuration └───────────────────────────── +# These are the setting items for the full-text search provider. +fulltextSearch: + # You can select the ID generation method. + # - sqlLike (default) + # Use SQL-like search. + # This is a standard feature of PostgreSQL, so no special extensions are required. + # - sqlPgroonga + # Use pgroonga. + # You need to install pgroonga and configure it as a PostgreSQL extension. + # In addition to the above, you need to create a pgroonga index on the text column of the note table. + # see: https://pgroonga.github.io/tutorial/ + # - meilisearch + # Use Meilisearch. + # You need to install Meilisearch and configure. + provider: sqlLike + +# For Meilisearch settings. +# If you select "meilisearch" for "fulltextSearch.provider", it must be set. # You can set scope to local (default value) or global # (include notes from remote). |