We’re using Tamino 4.2 in one of our projects and noticed the database performance improves significantly (by factor 20!) if we specify TSensitive.VAGUE instead of TSensitive.NO
However, if we perform the same XQuery directly using an HTTP post request, performance improves even by factor 50 instead of 20. Looking at the database XML logs, it seems that in this case, no _sensitive parameter is processed by Tamino at all.
I’ve been able to add an empty TSensitive type (or one containing “yes” or “whatever”) to the Tamino API and use this performing an XQuery. And now a call using the TaminoAPI4J also improves our XQuery speed by factor 50 compared to TSensitive.NO
My questions are:
- what is the impact of specifying an ‘illegal’ _sensitive parameter at all, compared to TSensitive.NO or TSensitive.VAGUE?
- why does this perform much better than the values “no” or “vague”?
- why isn’t there an option in the TaminoAPI4J to ‘unset’ the _sensitive parameter?