Replies: 1 comment
-
|
new Index({tokenize: "full"}); did the trick. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
A noob question about partial search matches. I have the following code:
var index = new Index();
index.add(0, "John Doe");
const res = index.search("Joh");
console.log("SEARCH RES", res);
I though this would result in a search match, but it doesn't.
=> SEARCH RES []
What am I missing? Please help!
Version: "flexsearch": "^0.7.2".
Beta Was this translation helpful? Give feedback.
All reactions