Is it possible to make search engine like Google. | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2

Is it possible to make search engine like Google.

All about Google

22nd Dec 2017, 1:35 PM
Amol
Amol - avatar
4 Réponses
+ 7
Building a search engine is not trivial. There are many components: parser (parse and tokenize text to be searched), index builder (build index for parsed text), query compiler (parse and compile query), query optimizer (augment and optimize query for better search quality and speed), matcher (boolean match to sift out docs that don't have query terms), ranker (rank matched docs according to their relevance to the query), snippet generator (generate search result), ...  Each component may be broken down to several sub-components. For example, index builder involves sophisticated algorithms to compress, decompress, merge, cache indexes :) @Sololearn
22nd Dec 2017, 1:48 PM
James16
James16 - avatar
+ 2
Have you built any search engine.
22nd Dec 2017, 1:49 PM
Amol
Amol - avatar
+ 1
Sure 😍
22nd Dec 2017, 2:21 PM
NabiL
NabiL - avatar
0
can you show me simple piece of code (if possible in javascript) to make a simple search. Using the numbers '1, 2, 3, 4' so that if you search it up it comes as a suggestion
23rd Dec 2017, 11:41 AM
Aidan
Aidan - avatar