vote up -3 vote down star
  1. what is google using to crawl sites?
  2. does anyone know their algorithm (or approximate algorithm) for site placement
  3. are they doing asp.net or heavy java or both?
flag
12  
(2*Much*Time + 2*Lazy*2*Read)^ADD = $Billions$ – RBarryYoung Jun 19 at 5:45
Is it good etiquette to edit in that a question is a duplicate before it has been closed as being such? – James McMahon Jun 19 at 13:43
@nemo: Yes, that's a good thing to do. It makes it easier to recognise the duplicate. – ShreevatsaR Jun 19 at 14:51
Part 1 of this question is a duplicate, but I do not see a duplicate question for parts 2 and 3. – Thomas L Holaday Jun 19 at 19:48
1  
step 1 - get htmls, step 2 - ???, step 3 - profit! – Jason Jun 19 at 19:57
show 1 more comment

closed as exact duplicate by George Stocker, GWLlosa, ShreevatsaR, ephemient, Mark Biek Jun 19 at 19:50

6 Answers

vote up 1 vote down check

Why would you automatically assume Java or asp.net? Neither is appropriate for the volume Google handle. The code is almost certainly C.

EDIT: I mean C/C++, I generally think of them as the same language.

link|flag
vote up 21 vote down

.1. An internal system created entirely inhouse. It shows up in access logs as:

"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"

. 2. PageRank is proprietary software and a closely guarded patent. There is a good description of it here, providing some fairly heavy maths.

. 3. Neither, at the centre of the system. It is mostly custom C/++ code and some python around the edges. Some of the AdWords code is javascript and Java.

link|flag
8  
Actually, a patent by its very nature makes an idea open -- all the information about the patent is available to see. However, the implementation of the patent is closed and cannot be seen by the public. – coobird Jun 19 at 5:17
I agree with your point - nicely expressed. – Chaos Jun 19 at 6:20
I suspect they can afford more lawyers than any infringer ever could too... its a lot easier to depend on patents for protection when you can afford to enforce them. – RBerteig Jun 19 at 6:56
Absolutely - and this can be generically extended (unfortunately) - that justice is there for those who can afford it – Chaos Jun 19 at 6:58
PageRank is not a closely guarded secret. As the Wikipedia article and the (freely available) papers show, it's just some fairly simple (and clever!) undergraduate-level linear algebra. Of course, Google's ranking is now based on more than just PageRank, but PageRank itself is easy to understand. – ShreevatsaR Jun 19 at 13:42
show 1 more comment
vote up 9 vote down

This is a good description of the main algorithms: The Anatomy of a Large-Scale Hypertextual Web Search Engine. The details have changed since then, but the main idea is still the same. More recent overview of Google architecture is here:

Web Search for a Planet: The Google Cluster Architecture

link|flag
vote up 6 vote down

Not Java, not asp.net, not C: Bjarne Stroustrup cites Google and 800 numbers as examples of projects implemented in C++.

Google's C++ Style Guide may provide some insights. I like:

  • No to exceptions
  • No to static or global variables of class type
  • Yes to unnamed namespaces
  • No to using directives
  • No to default arguments
  • No to overloading to simulate default arguments
  • No to () casts
link|flag
No to exception sounds silly if you do not state that it's only to avoid pain with their legacy code. – Jem Jun 19 at 10:37
The style guide says "No" to exceptions for all Open Source projects, not just those built with legacy code. I wonder whether ::operator new is permitted? – Thomas L Holaday Jun 19 at 11:31
The style guide seems designed to trim down C++ to something more understandable, for people who don't work with it all that much. I don't consider it a useful guide in general, however well suited to Google's situation and purposes. – David Thornley Jun 19 at 20:40
vote up 6 vote down

There is an April Fools description of their algorithm here: http://www.google.com/technology/pigeonrank.html

link|flag
vote up 2 vote down

You can find some information in patents Google has filed for:

Google Patents by Google Patents :)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.