chico1st Posted August 22, 2006 Share Posted August 22, 2006 I have all innoDB tables but i need to do a fulltext search, I have search and read a lot but all of them need a FULLTEXT INDEX which i would create by going like this:CREATE FULLTEXT INDEX full_index ON `news`( `name` , `abstract` , `fulltext` ); but i get this error: 'The used table type doesn't support FULLTEXT indexes 'is there an innoDB equivalent or have I destroyed all my chances of searching?THANKS FOR ALL THE HELP! Quote Link to comment https://forums.phpfreaks.com/topic/18254-innodb-fulltext-search/ Share on other sites More sharing options...
fenway Posted August 22, 2006 Share Posted August 22, 2006 Nope, no equivalent yet -- but they keep talking about it. There are some non-standard engines that do support it, but I've never used them in a production environment.Of course, there are always way around it -- like keeping these fields, or a copy of them, in a MyISAM table. Quote Link to comment https://forums.phpfreaks.com/topic/18254-innodb-fulltext-search/#findComment-78417 Share on other sites More sharing options...
chico1st Posted August 22, 2006 Author Share Posted August 22, 2006 if i change from innoDB to myIsam what will change? will I have to modify my code?ive looked into replication and i dont think i want to deal with thatthe speed of my inserts/updates really doesnt matter to me because i have very low traffic but i keephearing the word reliable thrown around, which is important.. i dont want my db's dieing on me.however i feel like reliability means something different in the databaseworld.. just because that seems to be the trend :P Quote Link to comment https://forums.phpfreaks.com/topic/18254-innodb-fulltext-search/#findComment-78425 Share on other sites More sharing options...
fenway Posted August 22, 2006 Share Posted August 22, 2006 InnoDB just gives you ACID compliance, transactions, and FK constraints. Quote Link to comment https://forums.phpfreaks.com/topic/18254-innodb-fulltext-search/#findComment-78582 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.