summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-07-17cargo: update to fail 0.3 (#593)Luca Bruno
* cargo: update to fail 0.3 * tantivy: align failpoints feature naming This aligns feature naming to use `failpoints` everywhere, like the underlying library.
2019-07-17using smallvec for operation batches (#599)Paul Masurel
2019-07-17Refactor deletes (#597)Paul Masurel
* Refactor deletes * Removing generation from SegmentUpdater. These have been obsolete for a long time * Number literal clippy * Removed clippy useless allow statement
2019-07-17Introduce a small refactoring of the sgment writer. (#596)Paul Masurel
2019-07-16disabling caching (#595)Paul Masurel
2019-07-15Fixed links (#592)Paul Masurel
Closes #591
2019-07-15Removed ilnk to master reference docPaul Masurel
2019-07-15Updated example linkPaul Masurel
2019-07-11Release 0.10Paul Masurel
2019-07-10Kompass master (#590)Paul Masurel
* Use once_cell in place of lazy_static * Minor changes
2019-07-10Only compile bitpacker4x (#589)Paul Masurel
2019-07-07Issue/479 (#578)Paul Masurel
* Sort by field relying on tweaked score * Sort by u64/i64 get independent methods.
2019-07-072018 (#585)Paul Masurel
* removing macro import for fail-rs * Downcast-rs * matches
2019-07-03Seek not required in Directory's write anymore (#584)Paul Masurel
2019-07-01Tiqb feature/2018 (#583)Paul Masurel
* rust 2018 * Added CHANGELOG comment
2019-06-29updating rand (#582)Paul Masurel
2019-06-27Add instructions for contributors (#574)petr-tik
2019-06-27Fix typo (#573)Kirill Zaborsky
2019-06-27Fixed CHANGELOG and disable one test on windows (#577)Paul Masurel
2019-06-27Update bitpacking requirement from 0.6 to 0.7 (#575)dependabot-preview[bot]
Updates the requirements on bitpacking to permit the latest version. Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-06-18Add crates.io shield to the README (#572)Antoine Catton
2019-06-16Closes #552 (#570)Paul Masurel
The different handles to `SegmentMeta` are closed before calling gc on end_merge.
2019-06-16Disabling travis on OSX (#571)Paul Masurel
2019-06-16adding cond (#568)Paul Masurel
2019-06-16trying to fix doc upload (#567)Paul Masurel
2019-06-12Petr tik n510 clear index (#566)Paul Masurel
* Enables clearing the index Closes #510 * Adds an examples to clear and rebuild index * Addressing code review Moved the example from examples/ to docstring above `clear` * Corrected minor typos and missed/duplicate words * Added stamper.revert method to be used for rollback Added type alias for Opstamp Moved to AtomicU64 on stable rust (since 1.34) * Change the method name and doc-string * Remove rollback from delete_all_documents test_add_then_delete_all_documents fails with --test-threads 2 * Passes all the tests with any number of test-threads (ran locally 5 times) * Addressed code review Deleted comments with debug info changed ReloadPolicy to Manual * Removing useless garbage_collect call and updated CHANGELOG
2019-06-12Resume uploading docs to gh-pages (#565)petr-tik
* Fixes #546 Generate docs and upload them. Need GH_TOKEN env var to be set in travis settings * Investigate what TRAVIS* env vars are set
2019-06-06Update winapi requirement from 0.2 to 0.3 (#537)dependabot-preview[bot]
* Update winapi requirement from 0.2 to 0.3 Updates the requirements on [winapi](https://github.com/retep998/winapi-rs) to permit the latest version. - [Release notes](https://github.com/retep998/winapi-rs/releases) - [Commits](https://github.com/retep998/winapi-rs/commits/0.3.7) Signed-off-by: dependabot[bot] <support@dependabot.com> * Fixing upgrading winapi (hopefully).
2019-06-06Issue/36 (#559)Paul Masurel
* Added explanation * Explain * Splitting weight and idf * Added comments Closes #36
2019-06-06Comments for IndexMeta (#560)Paul Masurel
2019-05-29Update .travis.ymlPaul Masurel
2019-05-29Trying to address #546Paul Masurel
2019-05-28Remove mut in add_document and delete_term. Made stamper ordering rel… (#551)Paul Masurel
* Remove mut in add_document and delete_term. Made stamper ordering relaxed. * Made batch operations &mut self -> &self * Added example
2019-05-28Make IndexMeta public (#553)Stephen Carman
2019-05-08Merge branch 'stamper_refactor'Paul Masurel
2019-05-08Removed the mutex implementation of AtomicU64.Paul Masurel
Fixed comment
2019-05-05Fix buildPaul Masurel
2019-05-05Issue/542 (#543)Paul Masurel
* Closes 542. Fast fields are all loaded when the segment reader is created.
2019-04-30Merge branch 'master' into stamper_refactorpetr-tik
2019-04-30Added more info to fast fields.Paul Masurel
2019-04-29Addressed code reviewpetr-tik
moved Opstamp to top-level namespace, added a docstring Corrected minor typos/whitespace
2019-04-26Merge branch 'master' of github.com:tantivy-search/tantivy into stamper_refactorpetr-tik
2019-04-26Dds merged (#539)Paul Masurel
* add ascii folding support * Minor change and added Changelog. * add additional tests * Add tests for ascii folding (#533) * first tests for ascii folding * use a `RawTokenizer` for tokens using punctuation * add test for all (?) folding, inspired by Lucene * Simplification of the unit test code
2019-04-26Added logging when token is dropped. (#538)Paul Masurel
2019-04-24Tidied up the Stamper module and upgraded to a 1.34 dependencypetr-tik
Added stamper.revert method to be used for rollback - rolling back to a previous commit in case of deleting all documents or rolling operations back should reset the stamper as well Added type alias for Opstamp - helps code readibility instead of seeing u64 returned by functions. Moved to AtomicU64 on stable rust (since 1.34) - where possible use standard library interfaces.
2019-04-24Closes #526 (#535)Paul Masurel
2019-04-24Merge branch 'master' of github.com:tantivy-search/tantivyPaul Masurel
2019-04-24Clippy2 (#534)Paul Masurel
* Clippy comments Clippy complaints that about the cast of &[u32] to a *const __m128i, because of the lack of alignment constraints. This commit passes the OutputBuffer object (which enforces proper alignment) instead of `&[u32]`. * Clippy. Block alignment * Code simplification * Added comment. Code simplification * Removed the extraneous freq block len hack.
2019-04-23Merge branch 'master' of github.com:tantivy-search/tantivyPaul Masurel
2019-04-23Clippy comments (#532)Paul Masurel
Clippy complaints that about the cast of &[u32] to a *const __m128i, because of the lack of alignment constraints. This commit passes the OutputBuffer object (which enforces proper alignment) instead of `&[u32]`.