: 2> Use external file fields (EFF) for the same purpose, that : won't require you to re-index the doc. The trick : here is you use the value in the EFF as a multiplier : for the score (that's what function queries do). So older : versions of the doc have scores of 0 and just don't : show up.
or use it in an fq={!frange ...} to eliminate the older versions completley. : > I will back up and let you know the use case. I am tracking file : versions. And I want to give an option to browse your system for the : latest files. So in order to remove dups (same filename) I used : grouping. based on only knowing that sentence, my starting suggestion would be to have two indexes: one where the filename is hte unique key, thus only the most current versions of files are listed, and one where there is no unique key (or you use whatever key you use today) that lets you do the full historical archive search, and query whichever index makes sense for each user action. -Hoss