Skip to content

0.0.11

Compare
Choose a tag to compare
@KonradHoeffner KonradHoeffner released this 05 Jan 18:45
· 99 commits to main since this release

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.