This is a public chat log generated from the #semsol IRC channel.
09:58:01
does anyone knows a way to query a parsed rdfa (a SemHTMLParser)?
10:03:43
in ARC you have to put the triples in the Store to query them
10:07:39
how can i do it?
10:09:19
i have a remote store (joseki)
10:10:23
You'd have to generate SPARQL Update code from the triples and then send them to Joseki
10:10:44
but I don't have experience with how Joseki works
10:11:56
you means iterate $triples = $parser->getTriples(); and make an INSERT DATA for each triple
10:12:27
INSERT DATA should support multiple triples in a single operation
10:14:40
IIRC, you can do $parser->toNTriples($triples, '', 1)
10:15:16
this will generate a Turtle/Ntriples snippet from all the triples which you can then INSERT in a single update operation
10:16:01
but i must avoid to modify the store, is there a way to create a temporal local store to insert the triples, query them and destroy it?
10:16:44
ARC stores are very easy to set up and drop, yes. But you need MySQL
10:17:26
i have mysql too
11:07:17
thanks bengee
