Jump to content

Best Table type for logs?


therealwesfoster

Recommended Posts

If you will be inserting a lot, you will probably want to go with InnoDB.

 

 

Most of the database engines MySQL uses, including MyISAM, use table level locking, but InnoDB uses row level locking.

 

 

In other words, for a MyISAM table, if two inserts get fired off simultaneously, the second one must wait until the first one is done before it can even begin.  In an InnoDB table, they would happen at the same time.

Hrmmm...  To be honest, I didn't even think to think about the Archive engine....

 

 

What do you plan on doing with the data once it's in the tables?

 

 

Archive tables cannot have indexes....  So, if you planned on searching the tables, that option would go out the window.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.