views:

38

answers:

2

Is there any good reference for learning how search engine (google, etc..) works? Does it using any special database? Thanks.

+1  A: 

Here's a good place to start.

Google is also somewhat famous for the PageRank algorithm, though it is only one of many factors that go into their search results.

Amber
+1  A: 

Search engines work on what are known as Inverted Indexes. A fabulous Free Opensource implementation is Apache Lucene

Mikos