View Single Post
Old 04-10-2004, 08:02 PM   #5 (permalink)
kel
WARNING: FLAMMABLE
 
Location: Ask Acetylene
The hits algorithm itself is only a high level description of what goes on, there is alot more to actually implementing a search algorithm that can accurately span the content of the web.


Standard (meaning off the shelf) relational databases won't work because they don't store and index properly. They won't work as a low level store because they can't find and read information fast enough, so you can't build an engine on top of it that spans the WWW.

You COULD build your own relational database that has the low level design that can access the large amounts of information in less then a second and interact it with it through an SQL query engine. But it would be somewhat pointless.

SQL is a sledgehammer when it comes to the relatively repetitive accesses google has to perform to complete a search.
__________________
"It better be funny"

Last edited by kel; 04-10-2004 at 08:18 PM..
kel is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43