flexsearch
flexsearch copied to clipboard
Next-Generation full text search library for Browser and Node.js
I discovered [nearform/lyra](https://github.com/nearform/lyra) which launched just a few weeks ago and presents itself as a "fast, in-memory, typo-tolerant, full-text search engine", with lookups that takes [microseconds](https://github.com/nearform/lyra/tree/main/packages/benchmarks). Would be interesting to...
I'm trying to retrieve enriched documents from the Document index, but only getting the non-enriched id back. Example code: ``` import { Document } from 'flexsearch'; type TestDocument = {...
Is there any way to support typos/misspellings of a word? Like a hamilton distance search where anything with a small distance is also included? eg: if I misspell `tetx` instead...
Hi! Thanks for the lib, but for some reason, the `Worker` index does not work for me. What I do: 1. I create a new project: `npx create-react-app test-search --template...
I am developing an OpenHarmony application and have JavaScript compatibility issues. Can you support the OpenHarmony version? I am willing to participate in the development of adaptation and look forward...
trying to fix issue #273
I am using flexsearch together with a GatsbyJS plugin called gatsby-plugin-local-search, where I can pass options for flexsearch into the plugin like this: `engineOptions: { charset: "latin:extra" }` which is...
in current recur implementation of export, the result key is somehow got all connected with dot. so instead of "reg, cfg, map, ctx", now the exported keys are "reg, reg.cfg,...
I get the `Property 'get' does not exist on type` typescript error when trying to use documentIndex.get() Sample code: ``` import { Document } from 'flexsearch'; type TestDocument = {...