I am working on a full text search using the Verity search engine. All is well except for one thing, a few of the records are duplicated. I made sure the files it was returning were in there only once. As I sit here thinking about it, it seems to be duplicating files that are in subdirectories of the directory I indexed.
Here is my indexing code(IndexRecurse = YES):
And, here is my search:
Anybody have any insight into this? Calista :-X
Jedi Knight,
Champion of the Force
Here is my indexing code(IndexRecurse = YES):
Code:
<CFINDEX
collection="#IndexCollection#"
action="REFRESH"
type="PATH"
key="#IndexDirectory#\"
URLPATH="[URL unfurl="true"]http://127.0.0.1/cfdocs/NewIntranet/Documents/"[/URL]
extensions="#IndexExtensions#"
recurse="#IndexRecurse#"
language="#IndexLanguage#">
Code:
<CFOUTPUT>
<!--- Perform search. --->
<CFSEARCH
name = "GetSearchInfo"
collection = "#SearchCollection#"
criteria = "#Criteria#">
Jedi Knight,
Champion of the Force