PDA

View Full Version : Is there a good reason not to...


Carnage
08-10-2008, 10:24 PM
... change the vbulletin default tables to use the INNODB storage engine?

I'm writing a mod and i want to use forign key contraints against a couple of tables... for that to work they have to be innodb...

Marco van Herwaarden
08-11-2008, 07:14 AM
Not for any searchable table like post.

Carnage
08-12-2008, 07:09 PM
is that saying theres no reason not to?

My thinking on this: on the surface, innoDB seems to be a better engine, however there must be a reason most things (like vb) use myisam... i refuse to believe its all done out of lazyness...

Lynne
08-12-2008, 08:08 PM
If you want more detail or specifics, this might be a question best addressed to the developers over at vb.com

Marco van Herwaarden
08-13-2008, 06:27 AM
Searchable tables like the post table must use MyIsam or you would not have the option to use the MySQL Full Text Search.

Carnage
08-14-2008, 05:08 PM
bit of an annoyance... one of the tables was the thread table.

Guess i have to write code to do it instead... or perhaps use triggers...