mysql - CS-Cart 4 Site Performance Troubles. Can db caching be the culprit? -
We have launched our site prematurely and hit with some dirty performance issues. I'm a MS SQL Server Professional from Business, but this MySQL database has been worked to tune up. As I think the MyISAM database does not have row level locking and if you are editing data, then lock the entire table. Anyone can confirm or reject my beliefs ....
We have spent a lot of money on Google AdWords and are capable of generating some "useless" traffic on the site ... but at the same time In, our home staff are loading the site with new products all day. In the evening when no one is inputting, I have seen the site load around 2-3 seconds .. But when the people are input, the load time falls to 8-9 ... Sometimes load more than 10 seconds.
In addition to this, we have recently changed our CS-Cart caching from "File" to "ISSLL". This table is possibly missile ... Can this effect be demonstrated, as well as being from nature, write this table often.
As I understand that there is no row level locking in the MyISAM database if you have data If you are editing then the whole table will lock. Can someone confirm or reject my beliefs ....
You are right in MySam only table level lock InnoDB supports row level lock.
In fact, lock wait times can be important if many concurrent users can use the MyISAM tables but to prove / reject that you need to collect all the questions in a slow log (Set long_query_time to 0) and review the log with pt-query-digest, then you will see how much time of MySQL is spent, so the solution can be easy to find.
Comments
Post a Comment