|
|
|
|
|
by hardwaresofton
1342 days ago
|
|
How do you classify the difference (in problem/scope, etc) of type ahead versus full blown search? It feels like these systems can be grown almost completely differently -- you could hack together completely in-browser "search" with datalists[0] and just prune it actively (and fool most users, depending on how varied searches were). I do wonder how much deep search really matters when people only really expect to look at the first page. [0]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/da... |
|
In my experience, you don't have to spend a lot of time thinking about scoring and relevancy for these types of search. Generally you only want to include a small edit distance in the results at all to handle misspellings.
This is so vastly different when you have a corpus of millions of documents about an encyclopedia's worth of topics.
> I do wonder how much deep search really matters when people only really expect to look at the first page.
Getting the first page to have the best quality and relevancy is much more difficult if the user is searching through something like scientific papers, stock video footage. It is a challenge in bridging the distance between ideas and expectations.