Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add tokenizer for the query string #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

BlessSan
Copy link

@BlessSan BlessSan commented Nov 16, 2024

Problem: lunr query search term depends on spaces for each token. However, lunr.ja plugin tokenize the fields (documents) using japanese segmenter.

So, for example the resulting token created for the field 標準製品仕様は will be 標準, 製品, 仕様, and は (as demonstraded in http://chasen.org/~taku/software/TinySegmenter/)

Solution: To search for 標準製品 (which is two words), tokenize the input query using the same tokenizer. Then convert it back into lunr query search term.

Limitation: since this method essentially add spaces to Japanese words (as dictated by the segmenter used by lunr.ja). Using wildcards, fuzzy, boosts (https://lunrjs.com/guides/searching.html) in search method would produce false result.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant