mochi
mochi
@PSeitz Thank you very much for your reply. I use `INDEXED` retest it. Here I give a minimum test case, the time consume is lower. > You can download the...
Where can I find out whether this test case is running in release or debug mode? My test case `Cargo.toml` is: ```toml [package] name = "tantivy_demo" version = "0.1.0" edition...
Here is test result in release mode: - row_id field_options is `INDEXED`: ```bash ❯ ./target/release/tantivy_demo range query answer size:10000, range_duration:5ms text query answer size:2574, range_duration:0ms boolean query answer size:5, range_duration:5ms...
@PSeitz Here is `FAST` in release mode ```bash ❯ ./target/release/tantivy_demo range query answer size:10000, range_duration:29ms text query answer size:2574, range_duration:0ms boolean query answer size:5, range_duration:26ms ``` Based on the results...
I’ve realized that by using a custom `Collector`, I can gather the results for `row_id`. My current schema is as follows: ``` rust schema_builder.add_u64_field("row_id", FAST | INDEXED); schema_builder.add_text_field("title", TEXT); schema_builder.add_text_field("body",...
Thank you for your patient explanation, now I understand the scanning method of the FAST index. My specific requirement is to write an FFI search function for C++ usage. The...
❤️ 👀 @diegoceccarelli
@AndreP-git Following your advice, I have refined the code.
@diegoceccarelli Thank you so much for refining my code. Your improvements will make ranx more user-friendly.