vacat / zsearch

A high performance search engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

zsearch A high performance search engine

Low Data fragmentation and good random write performance by using levelDB Log Structured Merge Trees. High performance query speed by using CompressedBitmap to store DocumentIds in an InvertedIndex interface provided by a simple libEvent2 http server.

Project Design

Engine 
	-> tokenizer	
	-> documentStore
	-> invertedIndex
		-> KVStore
			-> InMemory
			-> LevelDb
		-> setFactory
	-> setFactory
	-> wordIndex

Project Organization

TODO

Contact

Dependencies

All of the following:

Cloning and Running

You can clone this repo and simply execute:

git clone git://github.com/victorparmar/zsearch.git
cd zsearch
./buildall.sh
./build/server ./docroot

License

  • Mozilla

About

A high performance search engine