Forum Moderators: Robert Charlton & goodroi
Not a personalized search problem that I can tell?
First off being a programmer I have no problem building long boolean search strings.
Sort of like the old "search within results" concept
- So generally I'll start off with search with a 2-3 word phrase(20 million results)
red widgets
- I add a few more words to the search(2 million results)
cheap red steel widgets
- I throw in a negative keyword(500 thousand results)
cheap red steel widgets -square
- I throw in another negative keyword(5 million results)
cheap red steel widgets -square -round
So even though the last search has an additional negative keyword, the number of results increase.
From what I understand, the way that Google shards their data it is not an easy task to come up with a number of pages. There have been periods of time where the "about" number was so far off it was ridiculous. This particular oddity is also pretty far out there.
- I throw in another negative keyword(5 million results)
cheap red steel widgets -square -round
Possibly... taking a wild stab at what the mechanism might be... this reminds me of what sometimes happened with "negative exclusion strings" that were used for a while to return original pre-filtered results during the Florida update.
Adding enough negative text strings that weren't contained in any documents would "break" the filter. Exclusion string searches took the form...
keyword -asdf -asdf
The idea was that overloading the search input would disable the extra layer of computation that was the filter on top of the "plain vanilla" search. Sometimes, it took many repetitions of -asdf to do this.
This is clearly not a very precise description of how Google worked then, and clearly Google has also changed a lot since then... but positing that returning the number of results is an add-on layer, I'm thinking out loud that something similar might be at work... ie, that adding several exclusion strings, in this case strings that are real words, could fuzz up the already approximate calculation.
I went from 184 results to 100,000+ a few days ago by adding -word. I wish I could remember the term now but I can't.