On 12/12/06, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 12/12/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: > : One potential issue to watch out for... > : DocSet("*:* -id:foo") is not the same as not(DocSet(id:foo)) > : That's normally fine, depending on how the set is used. > > can you elaborate on that yonik? ... are you refering just to deleted docs > or is there something else i'm missing?No, just deleted docs. If used only as a filter, that's fine, but if you use it as a set of documents to return (as useFilterForSortedQuery does), or as the set of documents matching a facet (as the faceted browsing code does), then you're in trouble.
Actually, faceting always does an intersection with a real set, so that's OK. -Yonik
