what is the total number of results that can be obtained through a query on search.web? i know i can get up to 5000 with a single query but when i try to access 5001-10000 in my program it just returns 1-5000. I've played with the query console page and this doesn't happen
e.g. select * from search.web(5000, 5000) where query = "hot dogs" works in console but not in my program (start 5000, count 5000)
select * from search.web(5000, 0) where query = "hot dogs" works in both (start 5000, count 5000)
couple of mistakes, the last line
select * from search.web(5000, 0) where query = "hot dogs" works in both (start 5000, count 5000)
should read
select * from search.web(5000, 0) where query = "hot dogs" works in both (start 0, count 5000)
second
select * from search.web(5000, 5000) where query = "hot dogs"
returns the same results as
select * from search.web(0, 5000) where query = "hot dogs"
so i am getting the same results in my application.
is there any way to get more than 5000 results?