Thanks for the replies.
If I want from now on search in all sub-elements of the text “Text1” (case-insensitive), with a full text query, it should be like this in QuiP :
QUERY A :
------------
for $aaa in collection(“ino:etc”)/AAA
return
{$aaa/@ID}
{$aaa/BBB}
{$aaa/CCC/DDD[lower-case(string(.))=lower-case(“Text1”)]}
This query is much slower than the X-Query Full Text search :
QUERY B :
------------
AAA/@ID[//DDD~=“Text1”]|//DDD[.~=“Text1”]
On the other hand, using the last query, I can’t retrieve with X-Query more than 2 types of element (here : AAA and DDD). If I try to retrieve in supplement BBB elements, I get only results from 1 AAA element :
QUERY C :
------------
AAA/@ID[//DDD~=“Text1”]|//DDD[.~=“Text1”]|AAA/BBB[//DDD~=“Text1”]
So my dilemma is :
- with QuiP, it’s possible to write the query, but the processing time is too long ; moreover QuiP is not implemented on the database side.
- with X-Query implemented in Tamino, I can get the result quickly, but only a part of it.
Questions :
- Is there any other way in Tamino to get such query results ?
- When the next version of Tamino will be out ?
#Tamino#webMethods#API-Management