About 162,000 results
Open links in new tab
  1. Testing performance of queries in mysql - Stack Overflow

    Sep 18, 2011 · Shouldn't your testing take into account that InnoDB will itself have different states during actual performance, such that you become interested in aggregate performance over …

  2. MySQL - force not to use cache for testing speed of query

    Oct 8, 2008 · 2 If you want to disable the Query cache set the 'query_cache_size' to 0 in your mysql configuration file . If its set 0 mysql wont use the query cache.

  3. How to check performance of mysql query? - Stack Overflow

    Aug 20, 2015 · MySQL Query Optimizer can access the tables in the wrong order note this is not bad when you dont use GOUP BY or ORDER BY. but if you do the chance is MYSQL needs …

  4. Fill database tables with a large amount of test data

    Sep 22, 2010 · I need to load a table with a large amount of test data. This is to be used for testing performance and scaling. How can I easily create 100,000 rows of random/junk data …

  5. Theoretically, in low-conflict scenarios , can MySQL support tens of ...

    Sep 4, 2024 · In the process of optimizing MySQL, we discovered a performance collapse at 10,000 concurrent connections during benchmarksql testing. Is there a theoretical limitation, or …

  6. How to check MySQL performance? - Stack Overflow

    Dec 20, 2010 · 2 If you want to buy a commercial product, there is the MySQL Query Analyzer Otherwise, you could use the SQL Profiler which is already included with MySQL. The SQL …

  7. testing - how to test your mysql queries? - Stack Overflow

    Jan 2, 2012 · 7 I have developed some mysql queries for my application, and created indexes and used EXPLAIN statements as well. What types of testing methods we can use to check …

  8. sql - MySQL OR vs IN performance - Stack Overflow

    80 The accepted answer doesn't explain the reason. Below are quoted from High Performance MySQL, 3rd Edition. In many database servers, IN () is just a synonym for multiple OR …

  9. Best MySQL performance tuning tool? - Stack Overflow

    Which is the best, user-friendliest performance tool for MySQL? I'd like help with pinpointing the bottle neck of my setup. Is the problem in the SQL statements, the settings variables, or …

  10. performance - Check load on mysql database - Stack Overflow

    Jan 24, 2010 · What would be the best ways to monitor mysql performance and load, queries per second, total queries over a hour etc?