Jaro
Jaro

Reputation: 3887

Tweaking magento for performance

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 navigation, lev layered navigation and product listing and I cleared all cache then after this magento core does like 60 SQL queries agains a database. Does anyone have any procedure how to rid of them or how to reduce them to some acceptable amount?

Also can I somehow reduce a time spent during creating of blocks?

Thank you very much, Jaro.

Upvotes: 14

Views: 12269

Answers (7)

Oscprofessionals
Oscprofessionals

Reputation: 2174

I am adding additional comments for speed:

  1. Instead of using Apache use nginx or litespeed.
  2. Make sure flat catalog is used.
  3. If possible use FPC.
  4. compiler mode to be set on.
  5. Merge css and js(Fooman Speedster ).
  6. Use image sprites to reduce number of request.
  7. Use query cache but avoid size greater then 64 MB.
  8. Remove all modules not in use by removing there xml.Just disabling will not do.
  9. Session to be on Ram.
  10. Use of APC recommended.
  11. Your cron should be run in offpeak hours.
  12. Delete additional stores if not in use.
  13. Delete cart rules if not in use.
  14. optimize image for size.
  15. Use Ajax where ever possible.
  16. CMS blocks take more time then a magento block so unless you want a block to be modified do not use CMS blocks.
  17. Do not use collection count use collection getSize to get what is the collection size.
  18. Minimize number of searchable attributes as these result in columns in flat catalog table and will slow down your search.
  19. Use of Solr search is recommended. It comes with EE version but it can be installed with CE as well.
  20. Minimize customer group as suggested in comment.
  21. Enable compression in .htaccess (mod_gzip for Apache 1.3, mod_deflate for Apache 2)
  22. Remove staging stores if on EE.
  23. Use Apache mod_expires and be sure to set how long files should be cached.In case you are on Apache server.
  24. Use a Content Delivery Network (CDN).
  25. Enable Apache KeepAlives.
  26. Make your output W3C compliant
  27. Use of getChildHtml('childName') is recommended as this will cache block against direct use of block code in .phtml file.
  28. Make sure cron is run so as to clean logs stored in data base.
  29. Number of days log should be minimized as per requirement.
  30. Load cache on RAM if memory permits.
  31. Reduce hard disc file reads and try reads from ram as this is faster.
  32. Upgrade PHP version to above 5.3
  33. If on EE make sure that most pages are delivered without application initialization.Even if one container needs application initialization its going to effect execution speed as apart form URL rewrites most of the other code will get executed.
  34. Check XML for blocks placed in default handle and if those blocks not on specific page then move those XML values from default handle to specific handles.It has been observed that lots of blocks are executed that are not displayed.
  35. If using FPC make sure your containers are cached and repeat request for container is delivered via cache.Improper placeholder definition results in container cache not being used but each time new container content getting generated.
  36. Analyze page blocks and variables and if possible add those variables/blocks to cache.
  37. Switch off Logs writing in Magento.
  38. Remove Admin notification module.
  39. Use of image sprites.
  40. Use some web test tool to analyse number of requests and other html related parameters responsible for download time and act accordingly.
  41. Remove attributes if not needed.With proper care we can even remove system attributes if not in use. 42: If on enterprise make sure partial indexing is effectively used.
  42. Write your own solr search populate to bypass Magento search indexing.
  43. Clean _cl tables or reduce _cl table rows.
  44. I would add into list: try to avoid file cache if possible, replace it by apc / redis / memcache( As suggested by Jaro)
  45. Remove system attributes not in use( Be careful,do a thorough check before removing).
  46. There are some cron tab jobs that are not applicable to all stores so depending on your store features those can be removed.
  47. Optimization by proper attribute management like setting required attribute to yes or is searchable or required in listing etc.
  48. Some observers are not required for all stores so in case those observers are not applicable to a specific Magento site then they should be removed.
  49. Make sure FPC is applicable to most of the site pages. Specially when you added some new controllers to delivering a page.
  50. Magento has lots of features.For this it has many events and associated observers.There are few features that are not used by a store so any observer related to that feature should be removed.e.g : If you check enterprise version there is category permission concept which if not used, then its recommended that on save after events permission related observers to be removed.
  51. If a specific attribute is to be save for a product then instead of call $product->save call a function that will save specific attribute.
  52. In EE version that has partial indexing and triggers modify triggers to avoid multiple entries to_cl tables.
  53. No.phtml files bypasses blocks and use modules or resources directly.As this will result in no caching which in-turn means more work for Magento.
  54. Delivering images depending on device in use.
  55. Some of the FPC recommended for community : Lesti( Free as on date ),Amasty( commercial),extender(commercial ) and Bolt(commercial).
  56. Warming Cache.
  57. Controlling bots by .htaccess during peak hrs.
  58. Pre-populating values in a custom table for Layered Navigation via a custom script that executes daily by cron.
  59. Making sure to avoid unwanted Keys to reduce cache size.
  60. Using a higher PHP version 5.4+
  61. Using a higher Mysql version( 5.5 +)
  62. Reduce number of Dom elements.
  63. Move all js out from html pages.
  64. Remove commented html.
  65. Modify triggers if on enterprise version(1.13 or higher) so as to reduct _cl table entries.As these entries results in cache flushing which in turn results in lower cache hit,hence more TTFB time.
  66. Use Magmi to import products.

Upvotes: 11

goivvy.com
goivvy.com

Reputation: 192

First you need to audit and optimize time to first byte (TTFB).

Magento has profiler built-in that will help you identify unoptimized code blocks.

Examine your template files and make sure you DO NOT load product models inside a loop (common performance hog):

foreach($collection as $_product){
   $_product = Mage::getModel('catalog/product')->load($_product->getId()

I see this code often in product/list.phtml

I wrote a step-by-step article on how to optimize TTFB

Disclaimer: the link points to my own website

Upvotes: 0

Steve Holdoway
Steve Holdoway

Reputation: 31

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...

Upvotes: 2

mgtcommerce
mgtcommerce

Reputation: 11

i found a very interesting blog post about Magento Performance optimization, there are many configuration settings for your server and your magento store, was very helpful for me.

http://www.mgt-commerce.com/blog/magento-on-steroids-best-practice-for-highest-performance/

Upvotes: 1

ColinM
ColinM

Reputation: 13936

As Vinai said, Magento is all about extensibility and raw performance is secondary but remedied by things like indexing and caching. Significantly improving performance without caching is going to be very difficult. Short of full-page caching, enabling block caching is a good method of improving performance but proper cache invalidation is key. Many blocks are cacheable but not already configured to be cached by default so identify the slowest ones using profiling use Vinai's guide for enabling caching. Here are a few additional things to keep in mind with block caching:

  • Any block that lists product info should have the product's tag which is 'catalog_product_'.$productId. Similarly, use 'catalog_category_'.$categoryId for categories. This will ensure the cache is invalidated when the product or category is saved (edited in backend). Don't set these in the constructor, set them in an overridden getCacheTags() so that they are only collected when the block is saved and not when it is loaded from cache (since that would defeat the purpose of caching it).
  • If you use https and the block can appear on an https page and includes static resources, make sure the cache key includes Mage::app()->getRequest()->isSecure() or else you'll end up with http urls on https pages and vice versa.
  • Make sure your cache backend has plenty of capacity and avoid needless cache flushes.
  • Don't cache child blocks of a block that is itself cached unless the parent changes much more frequently than the child blocks or else you're just cluttering your cache backend.
  • If you do cache tagging properly you should be able to use a very long default cache lifetime safely. I believe setting "false" as the lifetime actually uses the default, not infinite. The default is 7200 seconds but can be configured in local.xml.
  • Using the redis backend in most cases will give you the best and most consistent performance. When using Redis you can monitor used memory size using this munin plugin.

Upvotes: 3

Mark Shust at M.academy
Mark Shust at M.academy

Reputation: 6429

Make sure mysql query cache is turned on. And set these variables in mysql (maybe need tweaking depending on your setup).

query_cache_type=1
query_cache_size=64M

Upvotes: 1

Vinai
Vinai

Reputation: 14182

Magento is a extremely flexible ecommerce framework, but that flexibility comes with a price: performance. This answer is a collection of pointers and some details on caching (especially for blocks).

One thing to consider is the Magento environment, e.g. tuning the php, the web server (favor nginx over Apache), and MySQL. Also, set up a good caching backend for Magento. All these are covered e.g. in the Magento Performance Whitepaper that applies also to the CE.

After the environment is set up, the other side of things is the code.
Reducing the number of queries is possible for some pages by enabling the flat table catalog (System > Configuration > Catalog > Frontend), but you will always have a high number of queries.

You also can't really reduce the time spent creating the blocks except by tuning the environment (APC, memory, CPU). So as the other commenters said, your best choice is utilizing the caching functionality that Magento has built in.

Magento Block Caching

Because you specifically mentioned blocks in the question, I'll elaborate a bit more on block caching. Block caching is governed by three properties:

  1. cache_lifetime
  2. cache_key
  3. cache_tags

All these properties can be set in the _construct() method of a block using setData() or magic setters, or by implementing the associated getter methods (getCacheLifetime(), getCacheKey(), getCacheTags()).

The cache_lifetime is specified in (integer) seconds. If it is set to false(boolean), the block will be cached for ever (no expiry). If it is set to nullthe block will not be cached (this is the default in Mage_Core_Block_Abstract).

The cache_key is the unique string that is used to identify the cache record in the cache pool. By default it is constructed from the array returned by the method getCacheKeyInfo().

// Mage_Core_Block_Abstract
public function getCacheKeyInfo()
{
    return array(
        $this->getNameInLayout()
    );
}

public function getCacheKey()
{
    if ($this->hasData('cache_key')) {
        return $this->getData('cache_key');
    }
    /**
     * don't prevent recalculation by saving generated cache key
     * because of ability to render single block instance with different data
     */
    $key = $this->getCacheKeyInfo();
    //ksort($key);  // ignore order
    $key = array_values($key);  // ignore array keys
    $key = implode('|', $key);
    $key = sha1($key);
    return $key;
}

The best way to customize the cache key in custom blocks is to override the getCacheKeyInfo() method and add the data that you need to uniquely identify the cached block as needed.

For example, in order to cache a different version of a block depending on the customer group you could do:

public function getCacheKeyInfo()
{
    $info = parent::getCacheKeyInfo();
    $info[] = Mage::getSingleton('customer/session')->getCustomerGroupId()
    return $info;
}

The cache_tags are an array that enable cache segmentation. You can delete sections of the cache matching one or more tags only.
In the admin interface under System > Cache Management you can see a couple of the default cache tags that are available (e.g. BLOCK_HTML, CONFIG, ...). You can use custom cache tags, too, simply by specifying them.
This is part of the Zend_Cache implementation, and needs to be customized far less frequently compared to the cache_lifetime and the cache_key.

Other Caching

Besides blocks Magento caches many other things (collection data, configuration, ...).
You can cache your own data using Mage::app()->saveCache(), Mage::app()->loadCache(), Mage::app()->cleanCache() and Mage::app()->removeCache(). Please look in Mage_Core_Model_App for details on these methods, they are rather straight forward.

You will also want to use a full page cache module. If you are using the Magento EE, you already have one. Otherwise search Magento Connect - there are many options (commercial).
Some of those modules also tune various parts of Magento for you beyond the full page caching aspect, e.g. Nitrogento (commercial).

Using a reverse proxy like Varnish is also very beneficial.

There are quite a number of blog posts on this subject. Here is one post by the publishers of the Nitrogento extension.
If you are running Magento on a more low-scale environment, check out my post on the optimization of the file cache backend on magebase.com.

Upvotes: 28

Related Questions