Reputation: 3535
I'm developing a search system for a CMS and we use INNODB. I'm still designing the system and at first i looked at FULLTEXT on mysql to develop the search feature but i just discovered it is supported by MyISAM only.
I've always ignored third party search engines like Lucene or Sphynx because i tought they couldn't adapt to a CMS because it had to be run externally from your webserver. I've never used one, that's why i'm asking a question: is there a third party search engine that could be easily deployed with the CMS code itself, without needing the user to run anything on the server?
Maybe the solution is easy but i'm totally new to these things.
Upvotes: 0
Views: 83
Reputation: 270
Perhaps try; http://www.google.co.uk/cse/
Otherwise depending on the complexity of the search perhaps try stack a few SQL LIKEs since you cannot use FULLTEXT.
Upvotes: 0
Reputation: 26699
You can use Zend Framework's implementation of Lucene - it can be used standlone, without other parts of ZF, and it does not need separate server, since the search-index is stored in files.
Upvotes: 2