The following FreeTextTable query takes > 10 seconds on the first request, but about a second for subsequent requests:
SELECT [Key], [Rank]
INTO #matches
FROM FREETEXTTABLE(Book, [Description], @searchWord)
After approx. 10 minutes of inactivity the next request will once again take > 10 seconds. This seems like the freetext cache is periodically cleared.
Is this something that I can configure in SQL Server 2005?