-
I tried to use code example from unit test, but got the following error:
Code to reproduce:
```
const FlexSearch = require('flexsearch')
// tslint:disable
;(async () => {
const index =…
-
I say weird, but I should rather say… unconventional.
Like:
```
while(i < length){
tmp = arr[i++];
const index = "@" + tmp;
…
-
Thanks for this capability. I am excited to learn how this works for several use cases I have
I ran your 'best practice with some modeification. I cannot find the source of the error ...
"c is not…
-
If the same word appears in different doc fields, the search returns no results.
Demo (open console):
https://stackblitz.com/edit/flexsearch
-
Hi,
Your work is great.
After playing around, i found an issue with your demo.
Search string "john wi" is shown fine.
But search "john wic" is empty.
Could you check it?
![2019-03-12_215…
-
Hi, I've been using - https://github.com/jeancroy/FuzzySearch
...which I've found to be very quick. How does FuzzySearch compare to flexsearch?
Be great if you could make some more usage examples.
ghost updated
5 years ago
-
The benchmarks for query and memory tests use different presets, but compare to same config of other libraries.
It would be helpful to be able to compare the difference of flexsearch performance bet…
-
Does the library support serialize/deserialize flexsearch object as json ?
I'd love to create index in Node , but will deserialize the object in browser for client-side searching.
-
I tried to build this library with 'npm run build-compact' and got some errors like below :
`/bin/sh: -c: line 0: unexpected EOF while looking for matching ''
/bin/sh: -c: line 1: syntax error: un…
-
I expected to get matching documents to be unique within result. What is the angle for repeating these?
Example:
```javascript
const f = new FlexSearch({
doc: {
id: 'id',
field: ['field1'…