MySQL storage engine dilemma
- by burntblark
There are two MySQL database features that I want to use in my application. The first is FULL-TEXT-SEARCH and TRANSACTIONS.
Now, the dilemma here is that I cannot get this feature in one storage engine. It's either I use MyIsam (which has the FULL-TEXT-SEARCH feature) or I use InnoDB (which supports the TRANSACTION feature). I can't have both.
My question is, is there anyway I can have both features in my application before I am forced to make a choice between the two storage engines.