At 10:01 AM 1/15/2004 -0800, you wrote:
>Besides the obvious one searches across all groups and the other searches in a
>specified group, is there any particular reason why the same word(s) would produce
>results with f_find and not with f_search?
If memory serves me correctly, f_search uses the fts full text word index, which may
not exist if you haven't setup the index builder. Also FTS throws
away some words from it's index (common words like 'the' typically) so
that can also cause differences. Basically yes there are lots of
subtle differences in how those two work. So a different result is
possible even if it's working correctly, although would usually indicate
a problem with the fts index.
ChrisP.