Class CSearchEngine

java.lang.Object
   |
   +----CSearchEngine

public class CSearchEngine
extends Object
As the name might imply CSearchEngine implements the core of the search engine. CSearchEngine covers all data structures and functions needed to setup and search the index. When launched by calling its go-method the search engine sets up the index (word and document table) by spidering all specified web sites. After the index has been created the search engine will start waiting for requests.

Version:
0.6
Author:
Jörg Caumanns

Constructor Index

 o CSearchEngine()
Initialize all internal data structures.

Method Index

 o go(String[])
Spider the web, setup the index, and wait for requests.

Constructors

 o CSearchEngine
 public CSearchEngine()
Initialize all internal data structures.

Methods

 o go
 public void go(String args[])
Spider the web, setup the index, and wait for requests.

Parameters:
args - string list of web domains to be spidered.