This is a classical example of why not to drop stopwords, because this query then can't be searched. But if stop words are not removed, this is an extremely expensive query. It would be interesting to see how the various engines deal with this query.
For reference, one trick that helps consists of first rewriting the query into to^2 be^2 or not in order to have fewer clauses to deal with.
This is a classical example of why not to drop stopwords, because this query then can't be searched. But if stop words are not removed, this is an extremely expensive query. It would be interesting to see how the various engines deal with this query.
For reference, one trick that helps consists of first rewriting the query into
to^2 be^2 or not
in order to have fewer clauses to deal with.