Hello aseek-users,
I set MaxDocsPerServer 10 in aspseek.conf, run index
Then in search I notice, that one site, that have query word in
title at every page returns only 1 page, not 10...
I connect to database and make this sql query
"SELECT sites.site,status FROM urlword,sites
WHERE urlword.site_id=sites.site_id
AND sites.site LIKE 'http://somesite.com%'
AND deleted=0"
it returns 11 results, but status 200 had only 3 pages... but they
are the same
"SELECT DISTINCT sites.site,status FROM urlword,sites
WHERE urlword.site_id=sites.site_id
AND sites.site LIKE 'http://somesite.com%'
AND deleted=0"
returned me only 4 pages, and only one with 200 status
I run index in 5 threads...
So, questions are: when MaxDocsPerServer is counting, why documents
with 302 and 404 status counts, and why documents with the same url
appears in this table?
--
Regards