Releases: KonradHoeffner/hdt
Releases · KonradHoeffner/hdt
0.2.2
What's Changed
- update and refactor to Sophia 0.9 and mownstr 0.3 (only used if the optional sophia feature is not disabled)
- Update thiserror requirement from 1 to 2 by @dependabot in #47
0.2.1
Bugfix, please update!
- bugfix: handle case where high and low are both 0 and no matches have been found. Has been found by @donpellegrino and fixed by @GregHanson in #45
Full Changelog: 0.2.0...0.2.1
0.2.0
- support stable Rust, nightly not required anymore
- replace the rsdict library with sucds, potential performance improvements for queries, loading may be slightly slower (benchmarks in progress)
0.1.1
Update sucds from 0.6.0 to 0.7.0 and refactor code accordingly. Relea…
0.1.0
release 0.1.0
0.0.13
Release 0.0.13.
benchmarkdata
Add code example.
0.0.12
Sort by cached key when generating wavelet matrix. Release 0.0.12.
0.0.11
Make Hdt generic over the type of string pointer to use (Box, Rc or Arc).
This can save memory by reusing triple elements for certain triple patterns.
For example, triples_with_sp with a result of one million triples would allocate 3 million strings using Box but only 1 million and 2 strings using Rc.
In multi threaded environments, use Arc instead.
0.0.10
Fix binary search bug.