Paolo - does LARQ provide access to explain() ?
Jérôme - access to the Lucene index is property functions. Niether
Joseki nor ARQ have any specific understanding of this particular kind
of index. It would need a property function to expose the explain
functionality (which your app could add although it's not a simple
extension point in Joseki).
Andy
On 08/09/11 09:23, Jérôme wrote:
Hi,
I'm currently working with JOSEKI.
My client (a web application) does:
[...]
QueryExecution qExec = QueryExecutionFactory.sparqlService(url, query);
ResultSet set = qExec.execSelect();
[...]
At the server side, search(query) is called on a IndexSearcher object.
I would like to call the "explain" method instead of the "search" one.
I have not found how to do it with the Jena API.
Should I implement my own method? By adding an "explain" method in the
IndexLarq class?
Thank you.
Jérôme