Fulltext for innoDB? or a good solution for php app
Posted
by Joshua
on Stack Overflow
See other posts from Stack Overflow
or by Joshua
Published on 2010-06-07T04:14:27Z
Indexed on
2010/06/07
4:22 UTC
Read the original article
Hit count: 226
I have a table I want to run a fulltext search on, but it is currently innoDB and is using a lot of foreign keys for other kinds of queries.
Should I make like a 1:1 "meta-data" table that is myisam for fulltext?
Also I am reading some things that say that fulltext corrupts MySQL tables pretty randomly? I dunno, the articles are a couple years old, maybe they've fixed that in 5+?
If not what's a good solution for searching? Zend_Lucene seems cool but slow, even with caching, for the client's large tables and autocomplete functionality et al.
© Stack Overflow or respective owner