Tweaking magento for performance

后端 未结 7 2067
Happy的楠姐
Happy的楠姐 2020-12-07 15:26

i\'m looking on performance (server load time) of magento site and i\'m trying to tune search result pages. I realized that when I disabled all heavy things like top navigat

7条回答
  •  独厮守ぢ
    2020-12-07 15:56

    Just to follow on from Mark... most of the tables in the Magento database are InnoDB. Whilst the query cache can be used in a few specific places, the following are more directly relevant...

    innodb_buffer_pool_size
    innodb_thread_concurrency
    innodb_flush_method
    innodb_flush_log_at_trx_commit
    

    I also use

    innodb_file_per_table
    

    as this can be beneficial in reorganising specific tables.

    If you give the database enough resource, (within reason) the amount of traffic really doesn't load the server up at all as the majority of queries are repeats anyway, and are delivered out of database cache.

    In other words, you're probably worrying about nothing...

提交回复
热议问题