Hi Jan. Thank's again for your reply.
You're right. It is almost impossible to an user exclude 200.000 documents.
I'll do some tests with NOT IN query.
Thank you again.
*
--
*
*"E conhecereis a verdade,
Hi,
How, practically would a user end up with 200.000 documents excluded? Is there
some way in your application to exclude "categories" of documents with one
click? If so, I would index those category IDs on all docs in that category,
and then do &fq=-cat:123 instead of adding all the individua
Thank's Jan for your reply.
My application has thousands of users and I don't know yet how many of them
will use this feature. They can exclude one document from their search
results or can exclude 200.000 documents. It's much more natural that they
exclude something like 50~300 documents. More th
I would start with the way you propose, a negative filter
q=foo bar&fq=-id:(123 729 640 112...)
This will effectively hide those doc ids, and a benefit is that it is cached so
if the list of ids is long, you'll only take the performance hit the first
time. I don't know your application, but if