| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Pathrex is a Rust library and CLI for evaluating and benchmarking Path Queries over edge-labeled graphs.
A pre-built image is published to GitHub Container Registry on every release tag.
docker pull ghcr.io/sparselinearalgebra/pathrex:latestThe image's entrypoint forwards arguments to the pathrex binary.
Mount a directory containing your graph and queries, then call query:
DATA=<path-to-dir-with-graph-and-queries>
docker run --rm \
-v "${DATA}:/data:ro" \
ghcr.io/sparselinearalgebra/pathrex:latest \
query \
--graph /data/my-graph \
--format mm \
--queries /data/queries.txt \
--algo nfarpq \
--algo rpqmatrixDATA=<path-to-dir-with-graph-and-queries>
RESULTS=<path-to-results-dir>
docker run --rm \
-v "${DATA}:/data:ro" \
-v "${RESULTS}:/results" \
ghcr.io/sparselinearalgebra/pathrex:latest \
bench \
--graph /data/my-graph \
--queries /data/queries.txt \
--algo nfarpqThe entrypoint defaults to:
Pass any of those flags explicitly to override.
pathrex <SUBCOMMAND> [OPTIONS]
Subcommands:
query Run queries once and report result counts
bench Benchmark RPQ evaluators with criterion
| Flag | Description |
|---|---|
| -g, --graph <PATH> | Path to the graph (directory for mm, file for csv/rdf). |
| -f, --format <mm|csv|rdf> | Input format. Defaults to mm. |
| -q, --queries <FILE> | Queries file (see format below). |
| -a, --algo <nfarpq|rpqmatrix> | Algorithm(s). Repeat to run several. |
| -b, --base-iri [<IRI>] | Optional BASE <iri> to prepend to each query. Bare --base-iri uses http://example.org/. |
query adds -o, --output <FILE> to write JSON.
bench adds --output, --checkpoint, --resume, --criterion-dir, --plots, --sample-size, --warm-up, --measurement. See pathrex bench --help for details.
One query per line:
<id>,<sparql_pattern>
The pattern is wrapped into a full SPARQL query at load time:
Example queries.txt:
q1,?x <knows>/<likes>* ?y
q2,?x (<a>|<b>)+ ?y
Licensed under the MIT License. See LICENSE.
| Back | FazBrowse Home | New Git URL |