|
Project Information
Members
Featured
Downloads
Links
|
DEPRECATED NOTE: This project is deprecated. It is replaced by ExpressSearch framework which is a sub-project of Express-Me. You can find the latest new version at: http://code.google.com/p/express-me/wiki/ExpressSearch A very light weight search library based on lucene 2.2 and using java 5 generic. It is a very simple OSEM (Object Search Engine Mapping) and let user simplely get beans searched: List<T> list = Searcher.search(Class<T>, String q, Page page); Searcher is highly optimized which use only 1 IndexModifier for index and unindex, 1 IndexSearcher for search, and it is thread-safe. It avoids frequent open-and-close operation on IndexSearcher and IndexModifier which greately improves IO performance. |