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 > MyISAM vs. INNODB

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-12-04, 21:14
george5006 george5006 is offline
Registered User
 
Join Date: Mar 2004
Posts: 3
MyISAM vs. INNODB

A related question to my previous post, does anybody had any information about the relative performance of MyISAM vs. INNODB tables in MySQL?

To further clarify this, since INNODB is transactional, and MyISAM is not, it is probably safe to assume that the performance of MyISAM is better on WRIGHT operations. I am curious about the relative performance of the two table types on READ operations.
Reply With Quote
  #2 (permalink)  
Old 03-13-04, 03:02
ika ika is offline
Registered User
 
Join Date: Oct 2003
Location: Slovakia
Posts: 482
Re: MyISAM vs. INNODB

Quote:
Originally posted by george5006
A related question to my previous post, does anybody had any information about the relative performance of MyISAM vs. INNODB tables in MySQL?

To further clarify this, since INNODB is transactional, and MyISAM is not, it is probably safe to assume that the performance of MyISAM is better on WRIGHT operations. I am curious about the relative performance of the two table types on READ operations.
Depends on what do you really need.

If you need referential integrity and many features of transactional db then choose INNODB.
If you need high performance for write operations choose MyISAM.
There is not big difference in speed of select queries between MyISAM and INNODB.
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