On 05/02/15 17:26, Adrian Gschwend wrote:
On 05.02.15 17:23, Andy Seaborne wrote:
Hi andy,
It probably means the dataset isn't linked to its index in the
fuseki.ttl configuration file. Just having a text index isn't enough
(there can be multiple datasets in one configuration).
that was it thanks, still pointed to the TDB version instead of the
textIndex one.
Now it does search but it is super slow and it never returns a result
even with strings I find in the index. Is there any way to debug how
many entries are in the index and if they return useful answers?
regards
Adrian
You can just touch the text index with:
SELECT (count(*) AS ?C) { ?x text:query .... }
below that level, you can use Lucene tools themselves (or a java program
to access the Lucene index).
Andy