Having an MyISAM-Table.
When an Update comes in it haves to wait till a privios (already started) SELECT ends.
Having a very time-consuming SELECT (for reporting) "stops" the database.
I think about switching to INNODB (row-level-locking).
Will Updates be performed while the former SELECT is still running?
When an Update comes in it haves to wait till a privios (already started) SELECT ends.
Having a very time-consuming SELECT (for reporting) "stops" the database.
I think about switching to INNODB (row-level-locking).
Will Updates be performed while the former SELECT is still running?
Comment