Re: [basex-talk] Slow full-text querying

2024-02-18 Thread Christian Grün
Dear Greg, In BaseX, it’s the text nodes that are indexed. Here are some query that take advantage of the full-text index: db:get("theocom")[.//text() contains text 'apple'] db:get("theocom")//page[text() contains text 'apple'] db:get("theocom")//text()[. contains text 'apple'] ... If you check

Re: [basex-talk] Slow full-text querying

2024-02-18 Thread Murray, Gregory
Hi Christian, Thanks very much for your quick reply and all the information and examples. I have found that the first example you provided that includes scoring takes about 10 seconds with my database, whereas the second example that includes scoring is nearly instantaneous (33 ms). I have no