docs(multilingual): add pg_search backend to BM25 selector and comparison table - #1824
Merged
nicoloboschi merged 2 commits intoMay 28, 2026
Merged
Conversation
nicoloboschi
approved these changes
May 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Drift catch from #1755:
pg_searchshipped as the 5th BM25 backend in v0.7.0 and was already added toretrieval.md(the "Five pluggable BM25 backends" table) andconfiguration.md(env-var description + tokenizer enum).developer/multilingual.mdwas not updated and still enumerates only 4 backends, so a user reading the multilingual page to pick a BM25 backend for their bank's language doesn't seepg_searchat all — which is the only Citus-compatible option and the one with the richest tokenizer set for CJK / mixed scripts.This adds:
(native, vchord, pg_textsearch, or pgroonga)→(native, vchord, pg_textsearch, pgroonga, or pg_search).pg_searchrow, mirroringretrieval.mdframing (Citus-compatible, configurable tokenizer) andconfiguration.mdtokenizer enum (chinese_compatible,jieba,chinese_lindera, etc.).Both surfaces (
hindsight-docs/docs/developer/multilingual.md+skills/hindsight-docs/references/developer/multilingual.md) have the identical drift; both files are last touched on 2026-05-26 by #1538 (commit cb04cb7) ~13 min before #1755 landedpg_search(commit 4cd260b). The v0.7.1 release sync commit picked upversioned_docs/version-0.7/automatically per the release process, so versioned snapshots are intentionally out of scope here.If this is already covered by a separate patch, feel free to close and mark accordingly.