Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>Some useful links:</strong></p> <ul> <li><a href="http://www.ajaxline.com/32-tips-to-speed-up-your-mysql-queries" rel="noreferrer">32 Tips To Speed Up Your MySQL Queries</a></li> <li><a href="http://www.techiecorner.com/45/turn-on-mysql-query-cache-to-speed-up-mysql-query-performance/" rel="noreferrer">Turn on MySQL query cache to speed up query performance?</a></li> <li><a href="http://ask.amoeba.co.in/multiple-insert-in-single-query-php-mysql/" rel="noreferrer">Multiple Insert in Single Query – PHP/MySQL</a></li> <li><a href="http://www.experts-exchange.com/Database/MySQL/A_1250-3-Ways-to-Speed-Up-MySQL.html" rel="noreferrer">3 Ways to Speed Up MySQL</a></li> </ul> <p><strong>From MySQL Documentation:</strong></p> <p><a href="http://dev.mysql.com/doc/refman/5.0/en/insert-speed.html" rel="noreferrer">Speed of INSERT Statements</a> says:</p> <blockquote> <ul> <li><p>If you are inserting many rows from the same client at the same time, use INSERT statements with multiple VALUES lists to insert several rows at a time. This is considerably faster (many times faster in some cases) than using separate single-row INSERT statements. If you are adding data to a nonempty table, you can tune the bulk_insert_buffer_size variable to make data insertion even faster.</p></li> <li><p>If multiple clients are inserting a lot of rows, you can get higher speed by using the INSERT DELAYED statement.</p></li> <li><p>For a MyISAM table, you can use concurrent inserts to add rows at the same time that SELECT statements are running, if there are no deleted rows in middle of the data file.</p></li> <li><p>When loading a table from a text file, use LOAD DATA INFILE. This is usually 20 times faster than using INSERT statements.</p></li> <li><p>With some extra work, it is possible to make LOAD DATA INFILE run even faster for a MyISAM table when the table has many indexes.</p></li> </ul> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload