Milan Todorovic
Milan Todorovic

Reputation: 440

Exist-db text module for xquery not working

I've recently discovered this module for xquery on exist db here. There are few methods that I would need to use, but I fail to use them properly. I have a series of test xml files in one collection, and they are all in this form

<root>some string</root>

I am trying to use function text:fuzzy-match-all like this:

xquery version "3.0";

for $doc in collection('/db/testCollection')
return text:fuzzy-match-any($doc,'test')

and I recive empty array as result, and I have at least one xml file that has test for value. I have also tried function text:fuzzy-index-terms like this

xquery version "3.0";

text:fuzzy-index-terms("test")

and again, I receive no results at all. What am I doing wrong?

Upvotes: 0

Views: 95

Answers (1)

adamretter
adamretter

Reputation: 3517

The legacy full-text index was removed from eXist-db some years ago.

You should take a look at the documentation for the Lucene Full-Text index for eXist-db: http://www.exist-db.org/exist/apps/doc/lucene.xml

Upvotes: 1

Related Questions