Channel #semsol: Logs

This is a public chat log generated from the #semsol IRC channel.

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