omg
omg

Reputation: 139862

What's the best solution for huge amount of data,fulltext search?

I'm currently using MYSQL,

and it becomes the bottle neck of the whole system

Upvotes: 0

Views: 189

Answers (2)

Cal Jacobson
Cal Jacobson

Reputation: 2407

Consider Solr (not to be confused with the Solar Framework for PHP). It is based on Lucene and designed to scale, if that is one of your concerns.

Other Solr-related links you might find helpful:

Upvotes: 0

hegemon
hegemon

Reputation: 6764

Try Lucene indexing: lucene.apache.org. There is also a very good implementation in PHP as a part of Zend Framework.

Upvotes: 2

Related Questions