KonradHoeffner / hdt

Library for the Header Dictionary Triples (HDT) compression file format for RDF data.
https://crates.io/crates/hdt
MIT License
19 stars 4 forks source link

in-memory representation #2

Closed KonradHoeffner closed 1 year ago

KonradHoeffner commented 1 year ago

The HDT Reader hdt_reader.rs is optimized for reading of all triples from a buffered reader, but there should be an in-memory representation that can be queried for triple patterns. This could also lead to easier lifetimes than when using the reader.

KonradHoeffner commented 1 year ago

Finished basic version in commit 0d8666958c98f2f84197072c0169d35ad78884c0, struct is named Hdt and lives in hdt.rs.