Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently I am using custom made Java search engine. This Java engine uses Lucene to index MySql records. The are several problems with search engine:

1- Search results are not accurate.

2- It do not use weighting algorithms to make most matching result on top.

3- It consumes lot of memory.

4- Very hard to maintain, for various reasons.

So what I need to do is use ready made search engine either commercial or open source, that could integrate with my system smoothly and resolve my problems (as much as possible).

Could you please give me options, and where to look.

Thanks, Wa'el

share|improve this question
submit your site to google (at this moment, google is the champ) – ajreal Nov 10 '10 at 8:00

2 Answers

up vote 7 down vote accepted

Solr:

Solr is the popular, blazing fast open source enterprise search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, and rich document (e.g., Word, PDF) handling. Solr is highly scalable, providing distributed search and index replication, and it powers the search and navigation features of many of the world's largest internet sites.

Note that many of your problems might be due to misconfiguration or wrong queries, rather than lucene not being good.

share|improve this answer
yes, however luence is indeed require lots of memory,and try to keep your collection small (as in smaller doc size), dun just anyhow index from column A to Z – ajreal Nov 10 '10 at 8:03
1  
Solr works quite nicely out of the box. You can use the DataImportHandler for MySQL integration. If you have more difficulties, you can ask more specific questions both here and in the Solr mailing list. – Yuval F Nov 10 '10 at 9:25

While I too like Solr, I suggest you also consider Sphinx. It is said to be very easily integrated with MySQL. I would try Solr first and, if it does not help, try Sphinx as the second option.

share|improve this answer
Yeah Sphinx in quite nice, but it also crashes very regulary! – Peter Stegnar Dec 15 '10 at 20:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.