Created
March 19, 2014 10:44
-
-
Save mhgrove/9639292 to your computer and use it in GitHub Desktop.
CLI output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mhgrove:dist mhgrove$ cat input.nt | |
<urn:foo> <urn:bar> "literal". | |
mhgrove:dist mhgrove$ ./bin/stardog-admin db create -n foo -s input.nt | |
Bulk loading data to new database. | |
Parsing triples: 100% complete in 00:00:00 (1 triples - 0.2K triples/sec) | |
Parsing triples finished in 00:00:00.005 | |
Creating index: 100% complete in 00:00:00 (0.2K triples/sec) | |
Creating index finished in 00:00:00.005 | |
Computing statistics: 100% complete in 00:00:00 (0.2K triples/sec) | |
Computing statistics finished in 00:00:00.006 | |
Loading complete. | |
Inserted 1 triples in 00:00:00.053 at 0.0 triples/sec | |
Bulk load complete. Loaded 1 triples from 1 file(s) in 00:00:00 @ 0K triples/sec. | |
Successfully created database 'foo'. | |
mhgrove:dist mhgrove$ ./bin/stardog query search -q "literal" foo | |
+-------+-------+---------+ | |
| Index | Score | Hit | | |
+-------+-------+---------+ | |
| 1 | 1.046 | urn:foo | | |
+-------+-------+---------+ | |
mhgrove:dist mhgrove$ ./bin/stardog query search -q "literal" -l 10 foo | |
+-------+-------+---------+ | |
| Index | Score | Hit | | |
+-------+-------+---------+ | |
| 1 | 1.046 | urn:foo | | |
+-------+-------+---------+ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment