summaryrefslogtreecommitdiffstats
path: root/src/common/mod.rs
AgeCommit message (Collapse)Author
2019-08-08cargo fmtPaul Masurel
2019-07-27add support for float (#603)fdb-hiroshima
* add basic support for float as for i64, they are mapped to u64 for indexing query parser don't work yet * Update value.rs * implement support for float in query parser * Update README.md
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-03-20Linear simd (#519)Paul Masurel
* linear simd search within block
2019-03-20cleanup for nodefaultfeaturesPaul Masurel
2019-01-13More efficient indexing (#463)Paul Masurel
* Using unrolled u32 VInt and caching Vec s * cargo fmt * Exposing a io::Write in the Expull thing * expull as a writer. clippy + format * inline the first block * simplified -if let Some- * vint reader iterator * blop
2019-01-13More efficient indexing (#462)Paul Masurel
* Using unrolled u32 VInt and caching Vec s * cargo fmt * Exposing a io::Write in the Expull thing * expull as a writer. clippy + format * inline the first block * simplified -if let Some- * vint reader iterator
2018-04-21Cargo fmtPaul Masurel
2018-03-31Removed timerPaul Masurel
2018-02-12RustfmtPaul Masurel
2018-02-12Terminfo blocks (#244)Paul Masurel
* Using u64 key in the store * Using Option<> for the next element, as opposed to u64 * Code simplification. * Added TermInfoStoreWriter. * Added a TermInfoStore * Added FixedSized for BinarySerialized.
2018-02-05Issue/range query (#242)Paul Masurel
BitSet and RangeQuery
2017-12-14NOBUG rustfmtPaul Masurel
2017-08-26Better error handling. Some doc.Paul Masurel
2017-08-12Using composite file in fast field.Paul Masurel
2017-05-31issue/181 BinarySerializable does not return the len + Generics over Read+WritePaul Masurel
2017-05-25issue/174 Added doc, and made field privatePaul Masurel
2017-05-25Reorganized code and added documentation.Paul Masurel
2017-05-25Added stream dictionary code, merge unit testPaul Masurel
2017-05-17Fix typo in docstringLaurentiu Nicola
2017-05-15formatPaul Masurel
2017-05-11FIXED inconsistent Term's field serialization.Paul Masurel
Also. Cleaned up the code to make sure that the logic is only in one place. Removed allocate_vec Closes #141 Closes #139 Closes #142 Closes #138
2017-05-04issues/65 Added i64 fast fieldsPaul Masurel
2017-05-04i64 fast field workingPaul Masurel
2017-04-04issue/96 Added unit test, documentation and various tiny improvements.Paul Masurel
2017-03-29Added helper to create Vec with a given sizePaul Masurel
2016-11-24Compression working without simd workingPaul Masurel
2016-11-24issue/55 externalizing the bitpackerPaul Masurel
2016-11-23issue/55 simdcompression is a feature.Paul Masurel
2016-11-03issue/50 PhraseQuery workingPaul Masurel
2016-11-02issue/50 Removed SegmentPostingsTestFactory for just using VecPostingsPaul Masurel
2016-10-16bug/4 Removed race condition in SegmentUpdaterPaul Masurel
2016-10-15bug/4 Introduce segment_updaterPaul Masurel
2016-09-22DocPaul Masurel
2016-09-21NOBUG Added comments.Paul Masurel
2016-08-19Added delete.Paul Masurel
2016-05-01moved commonPaul Masurel