If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Cross-engine data-storage & Full-text indexing

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-20-06, 19:18
screenmates screenmates is offline
Registered User
 
Join Date: Jul 2005
Posts: 63
Cross-engine data-storage & Full-text indexing

I store text data in InnoDB and MyISAM tables simultaneously in a 1-to-1 relationship for full-text search indexing. The way I do it is - for every insert/update/delete of text columns in the InnoDB table, I sync the data in MyISAM table too. I thought if InnoDB supports full-text indexing in future, all I have to do is just blow off the MyISAM table. Is this an ideal approach or is it a better approach to store the text data in just the MyISAM table (instead of both)?

Secondly, I have 4 text columns in a single full-text index. Will the performance improve if I consolidate/duplicate the data from all the 4 columns into another column and create the full-text index on that single column instead of indexing on 4 different columns?

TIA
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On