François Massot
François Massot
It would be nice if a cache parameter can be passed to an ajax request: if set to false, it will force requested pages not to be cached by the...
Here is a test that is failing on the second assertion ```rust #[test] fn test_parse_test_not() { test_parse_query_to_ast_helper("tata -toto", "(*\"tata\" -\"toto\")"); test_parse_query_to_ast_helper("tata NOT toto", "(*\"tata\" -\"toto\")"); } ``` with output ```bash...
Given a field `my_field` with a fastfield and a document with no value for `my_field`, tantivy will insert a default value in the fastfield column store. For an integer/float, the...
Done here: https://github.com/quickwit-oss/tantivy/blob/main/src/schema/schema.rs#L402-L412 Better with `invalid_json.chars().take(20)` :)
Ok PR is ready for review. Here is a summary of the PR: - Piecewise linear codec added: basically it's a refactor and it fixes #1215 - #1212 partially fixed...
related to #981 This is a work in progress and is there to have early feedbacks on the documentation structure.
Currently, we serialize these values for each linear block: - `data_start_offset` (u64) - `value_start_pos` (u64) - `positive_val_offset` (u64) - `slope` (f32) - `num_bits` u8 It represents 29 bytes. But it's...
```rust #[test] fn test_compression_on_simple_data() { let data = (0..=CHUNK_SIZE*11 as u64).collect::(); let (estimate, actual_compression) = create_and_validate(&data, "simple monotonically"); println!("actual compression {} estimate {} data len {}", actual_compression, estimate, data.len()); assert!(actual_compression...
I thought this was present in tantivy but for now, there is only a `NgramTokenizer` that tokenizes words into the n-grams. Lucene offers a [ShinglerFilter](https://lucene.apache.org/core/8_9_0/analyzers-common/org/apache/lucene/analysis/shingle/ShingleFilter.html) which creates shingles or token...