by default AS do the search in document and tvs (&whereSearch=`content,tv`). By default all the values of the TVs are concatened to set up a field where the search occurs. So if you search "hihi" and "huhu" and these data are stored in two different Tvs, a search with the &advsearch=`allwords` will find the document.
Unfortunately with the 1.8 you can’t specify exactly which tvs use to set up the concatened value for the tv. This is on my todo list
Nevertheless you could exclude some documents if some TVs contains or not a specific value. For instance:
&filter=`tv_content,any_text,7` excludes all the documents if at least one tv doesn’t contain the text "any_text"
or
&filter=`tv_content,any_text,8` excludes all the documents if at least one tv contains the text "any_text"
But you could also use an other comparaison mode with the field tv_content:
Exclude a document if its value in the specified field
1 is not equal to the criterion (!=)
2 is equal to the criterion (==)
3 is less than the criterion (<)
4 is greater than the criterion (>)
5 is less than or equal to the criterion (<=)
6 is greater than or equal to the criterion (>=)
7 does not contain the text of the criterion
8 does contain the text of the criterion