“house” and the text node “house”, and one error between
“house” and “hous”.
===Performance===
The internal XQuery Full Text data model is pretty complex and may consume more main
memory as would initially guess. If you plan to combine search terms via {{Code|ftand}},
we recommend you to resort to an alternative, memory-saving representation:
<pre class="brush:xquery">
(: representation via "ftand" :)
"A B" contains text "A" ftand "B" ftor "C" ftor "D"
(: memory saving representation :)
"A B" contains text { "A", "B" } all ftor { "C", "D" } all
</pre>
==Mixed Content==