You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -6,9 +12,17 @@ and then generates and saves the data as HDT. Implementation is based on the [HD
6
12
and the output HDT is intended to be consumed by one of [hdt crate](https://github.com/KonradHoeffner/hdt), [hdt-cpp](https://github.com/rdfhdt/hdt-cpp),
7
13
or [hdt-java](https://github.com/rdfhdt/hdt-java).
8
14
9
-
## Using the rdf2hdt CLI
15
+
## Installation
16
+
17
+
Install `rdf2hdt` with `cargo`:
18
+
19
+
```bash
20
+
cargo install rdf2hdt
21
+
```
22
+
23
+
## Usage
10
24
11
-
This library includes a CLI utility for gnerating HDT files from RDF input data. The binary can be built using `cargo build`.
25
+
The `rdf2hdt` CLI tool is used for generating HDT files from RDF input data.
12
26
13
27
```bash
14
28
$ rdf2hdt convert --help
@@ -32,13 +46,6 @@ Options:
32
46
-v, --verbose...
33
47
Increase logging verbosity
34
48
35
-
-b, --block-size <BLOCK_SIZE>
36
-
Block size used during term compression
37
-
38
-
Every Nth term will be stored fully while others will only contain everything besides the longest common prefix of the last Nth term
0 commit comments