Good Morning All,
I have what I believe to be a simple question that I can go into more detail if needed, but we have a client with a workflow that searches for documents based on a template, field and creation date. The field being searched on isn't indexed, however a different field in the same template is indexed.
Is there any reason this would utilize LFFTS instead of the SQL engine for the search processing? This server has high LFFTS utilization and the client believes this workflow is impacting it, however I believe this would be a SQL search and would not impact the LFFTS utilization. Just looking for thoughts and/or verification.
There are 2 nested search activities. I have included a sanitized copy of the search routines below in case they are needed. Due to the repository architecture, some folders had to be excluded from the search results, hence the long search routine.
({[TEMPLATE NAME]} & {LF:Name="*", Type="DB"} & {LF:Created>="%(SearchStartDate)", Created<="%(SearchEndDate)"} & {LF:LOOKIN="ROOT\Folder1"}) - ({LF:LOOKIN="ROOT\Folder1\Folder2"} | {LF:LOOKIN="ROOT\Folder1\Folder3"} | {LF:LOOKIN="ROOT\Folder1\Folder4"} | {LF:LOOKIN="ROOT\Folder1\Folder5"} | {LF:LOOKIN="ROOT\Folder1\Folder6"} | {LF:LOOKIN="ROOT\Folder1\Folder7"})
({[TEMPLATE NAME]:[Field 1]="%(From_1st_Search)"} & {LF:Name="*", Type="DB"} & {LF:Created>="%(SearchStartDate)", Created<="%(SearchEndDate)"} & {LF:LOOKIN="ROOT\Folder1"}) - ({LF:LOOKIN="ROOT\Folder1\Folder2"} | {LF:LOOKIN="ROOT\Folder1\Folder3"} | {LF:LOOKIN="ROOT\Folder1\Folder4"} | {LF:LOOKIN="ROOT\Folder1\Folder5"} | {LF:LOOKIN="ROOT\Folder1\Folder6"} | {LF:LOOKIN="ROOT\Folder1\Folder7"})