Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
0c9189b
Use Levenshtein distance to score documents in fuzzy term queries
neilyio Feb 1, 2024
17d366e
feat: implement `TokenFilter` for `Option<F>` (#4)
aalexandrov Sep 7, 2024
feab164
Fix managed paths (#5)
rebasedming Oct 24, 2024
b48ff43
expose AddOperation and with_max_doc (#7)
rebasedming Oct 28, 2024
97e0a20
adjust `Dictionary::sorted_ords_to_term_cb()` to allow duplicates (#8)
eeeebbbbrrrr Oct 28, 2024
dbab871
Directory trait can read/write meta/managed
rebasedming Nov 13, 2024
a8ae71f
quickwit compiles
rebasedming Dec 6, 2024
db989cf
no pgrx, please
Dec 6, 2024
988b10b
undo changes to segment_updater.rs
rebasedming Dec 7, 2024
f8b6444
make save_metas provide previous metas
rebasedming Dec 8, 2024
bc24bda
Make DeleteMeta pub
rebasedming Dec 9, 2024
fd602a6
small changes to make MVCC work with delete
rebasedming Dec 13, 2024
504683d
Add a `payload: &mut (dyn Any + '_)` argument to `Directory::save_met…
eeeebbbbrrrr Dec 20, 2024
96d4add
fix compilation warnings on rust v1.83
Jan 9, 2025
de19c93
add reconsider_merge_policy to directory
rebasedming Jan 10, 2025
18d4b04
comments
rebasedming Jan 10, 2025
1f142c6
chore: point tantivy-fst to paradedb fork to fix regex
neilyio Nov 19, 2024
21c6d4d
implement fuzzy scoring in sstable
neilyio Jan 11, 2025
0ba892f
suppress warnings after rebase
neilyio Jan 11, 2025
34c17a1
fix: tests in ci (#18)
neilyio Jan 14, 2025
020bdff
perf: push `FileSlice`s down through most of fast fields (#19)
eeeebbbbrrrr Jan 15, 2025
2f4833a
chore: Don't do codecov (#21)
philippemnoel Jan 17, 2025
a4825d7
perf: teach `SegmentReader` to lazily open/read its various SegmentCo…
eeeebbbbrrrr Jan 17, 2025
8a99f9b
perf: remove some fast fields loading overhead (#22)
eeeebbbbrrrr Jan 21, 2025
90621ae
perf: make the footer fixed width (#23)
eeeebbbbrrrr Jan 21, 2025
5a72a03
feat: Add ability to construct a `SegmentId` from raw bytes (#24)
eeeebbbbrrrr Jan 23, 2025
552ccee
feat: delete docs by (`SegmentId`, `DocId`) (#26)
eeeebbbbrrrr Jan 27, 2025
9c08ebf
Change default index precision to microseconds (#27)
rebasedming Jan 29, 2025
d1609d2
feat: make garbage collection opt-out (#28)
eeeebbbbrrrr Jan 30, 2025
fdca6cf
feat: ability to assign a panic handler to a Directory (#30)
eeeebbbbrrrr Feb 2, 2025
6e33089
Merge branch 'quickwit-oss:main' into dev
philippemnoel Feb 18, 2025
1e57877
feat: Add `Directory::wants_cancel()` function (#31)
eeeebbbbrrrr Feb 28, 2025
988d38a
feat: introduce a `MergeOptimizedInvertedIndexReader` (#32)
eeeebbbbrrrr Mar 4, 2025
ba414bc
feat: remove `Directory::reconsider_merge_policy()` and add other nic…
eeeebbbbrrrr Mar 7, 2025
4594078
feat: `IndexWriter::wait_merging_threads()` return `Err` on merge fai…
eeeebbbbrrrr Mar 24, 2025
5e99b79
feat: ability to directly merge segments in the foregound (#36)
eeeebbbbrrrr Apr 1, 2025
05f06e3
chore: make some structs pub (#39)
rebasedming Apr 28, 2025
e7b32ae
chore: allow `merge_foreground` to ignore the store (#40)
rebasedming Apr 28, 2025
657cedc
Expose some methods which are necessary to create a streaming version…
stuhood May 28, 2025
ac2c902
Add string fast field support to `TopDocs`. (#45)
stuhood Jun 3, 2025
0313b9c
feat: `SnippetGenerator` can handle JSON fields (#42)
rebasedming Jun 8, 2025
db3a04c
chore: Make some delete-related functions public (#46)
rebasedming Jun 9, 2025
1b9d98a
perf: remove general overhead during segment merging (#47)
eeeebbbbrrrr Jun 9, 2025
881344e
changes to make merging work (#48)
rebasedming Jun 11, 2025
260d9b6
Revert "remove index sorting (#2434)"
rebasedming Jun 15, 2025
3515d1b
tests passing
rebasedming Jun 15, 2025
47a084d
cargo fmt
rebasedming Jun 15, 2025
0167cd2
fix tests
rebasedming Jun 15, 2025
3493c7c
comment out tempstore
rebasedming Jun 16, 2025
f5de5b6
fix store test
rebasedming Jun 16, 2025
b6a57fb
cargo fmt
rebasedming Jun 16, 2025
83b374a
segmentwriter can ignore store
rebasedming Jun 16, 2025
8f35280
Fix `TopNComputer` threshold comparison (#51)
stuhood Jun 17, 2025
2ace891
Merge branch 'main' into restore-sort-by-field
rebasedming Jun 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/coverage.yml

This file was deleted.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ target
target/debug
.vscode
target/release
Cargo.lock
benchmark
.DS_Store
*.bk
Expand All @@ -15,3 +14,6 @@ trace.dat
cargo-timing*
control
variable

# for `sample record -p`
profile.json
Loading
Loading