summaryrefslogtreecommitdiffstats
path: root/src/common/bitpacker.rs
AgeCommit message (Collapse)Author
2019-03-06Cargo fmtPaul Masurel
2019-02-26Code cleaningPaul Masurel
2019-02-04Closes #461 (#489)Paul Masurel
Multivalued fast field uses `u64` indexes.
2019-01-08Less unsafePaul Masurel
2018-12-17Format and update murmurhash32 versionPaul Masurel
2018-12-17Removing unsafe from bitpacking code (#455)Paul Masurel
2018-09-15Clippy (#422)Paul Masurel
* Cargo Format * Clippy
2018-06-22Preparing for releasePaul Masurel
2018-06-04Better heap (#311)Paul Masurel
* Changed the heap to a paged memory arena. * Trying to simplify the indexing term hashmap * Exploding datastruct * Removed some complexity in bitpacker
2018-04-21Cargo fmtPaul Masurel
2018-04-10Using bitpacker@3Paul Masurel
2018-02-20Refactoring of fastfieldsPaul 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-03FormatPaul Masurel
2018-01-25Test not passingPaul Masurel
2018-01-04rustfmtPaul Masurel
2017-12-14NOBUG rustfmtPaul Masurel
2017-12-14NOBUG ClippyPaul Masurel
2017-12-14NOBUG intellij misc lintPaul Masurel
2017-08-28Readded fix for non-simdPaul Masurel
2017-08-28Merge branch 'imhotep-new-codec'Paul Masurel
Conflicts: src/common/bitpacker.rs src/compression/pack/compression_pack_nosimd.rs src/indexer/log_merge_policy.rs
2017-08-28FormatPaul Masurel
2017-08-04issue/204 trying to fix nosimd branch. test not passingPaul Masurel
2017-06-14Added fill_buffer in DocSetPaul Masurel
2017-06-14Added unit testPaul Masurel
2017-06-13Added API to get range from fastfieldPaul Masurel
2017-06-06Closes #184Paul Masurel
Resizing the `Vec` was a bad idea, as for some stacker operation, we may have a living reference to an object in the current heap.
2017-06-05Tiny cleaningPaul Masurel
2017-05-31issue/181 BinarySerializable does not return the len + Generics over Read+WritePaul Masurel
2017-05-29Optimization in bitpackerPaul Masurel
2017-05-29Removed pointer in fastfieldPaul Masurel
2017-05-17use explicit drop instead of suppressionLaurentiu Nicola
2017-05-17Making clippy happy.Paul Masurel
+ Simplifying bitpacking by adding a 7 byte padding. + Bugfix in a unit test.
2017-05-17clippy: fix useless_let_if_seq warningsLaurentiu Nicola
2017-05-15formatPaul Masurel
2017-05-06issues/65 Added commentsPaul Masurel
Closes #65 Closes #132
2017-05-04issue/65 Switching to u64.Paul Masurel
2016-11-25issue/55 working.Paul Masurel
2016-11-24issue/55 externalizing the bitpackerPaul Masurel