Thomas Wilkerling

Results 71 comments of Thomas Wilkerling

partially yes: https://github.com/nextapps-de/flexsearch/blob/master/CHANGELOG.md

You can also use just one document index. After getting back the result you can merge the fields like the example above.

Partial search on tags isnt supported. Just add the tag field to the index to enable this feature. Case-insensitive for tags will come in next version.

The boolean flag is currently just applied across fields. That means you can specify if a term should included in every of the field or just at least in one...

1. use document index and add objects to the index which includes a date field 2. apply search and pass option `enrich: true` 3. sort results by standard function `arr.sort(fn)`...

Please contact the author of the GatsbyJS plugin. Thanks in advance.

Sorry no score documented, no score available, the score value is just calculated in the background and is applied to the order of results.

Automated tests will be back in the next version. Sorry for the circumstances. This issue gets the top priority.

Additional fix was added in v0.7.23

In Node.js: ```js const { Worker } = require("flexsearch"); (async function(){ const worker = new Worker(); await worker.add(1, "some text"); console.log(await worker.search("some text")); }()); ``` As ES6-Module: ```js import Worker...