Luca Ongaro

Results 108 comments of Luca Ongaro

I don’t, but I can try it to reproduce the issue

Hi @Zloka , thanks for opening this issue here. The main obstacles to implement such feature is to come up with a consistent and reasonably simple API. Currently, `useMiniSearch` is...

Hi @LostKobrakai , since `CubDB` data storage is implemented as a B+tree, using the sort order to filter keys is the most performant option. Ultimately, the main thing to know...

Yeah I see, something like ETS optimizing for “partially bound keys” when using `select` on an `ordered_set`. On one hand I like how `min_key/max_key` is always optimized, so one does...

> [Local search](https://vitepress.dev/reference/default-theme-search#local-search), implemented using [minisearch](https://github.com/lucaong/minisearch), which [does not support Chinese](https://github.com/lucaong/minisearch/issues/201) @squidfunk MiniSearch does support Chinese, although one has to provide a custom tokenizer for it, as explained for example...

Understood. I am not personally knowledgeable about supporting full-text search on Chinese language, but I tried to make MiniSearch as configurable as possible. I would definitely be interested in understanding...

It looks like `CubDB` successfully locates the latest good header, but then when it tries to read the root node that the header points to, it finds it's not a...

Hello @sinianzhiren , in principle, MiniSearch should be able to work with any language. In practice, in some cases it might be necessary to tweak some options, but I think...

Hi @acnebs , I need to think more deeply about it, but it is probably not possible to merge two indexes more efficiently than in a reindex. That said, the...

I see, thanks @acnebs for the explanation. I would advise trying to figure out how to re-initialize the app: the `MiniSearch` instance and the index are ultimately made of plain...