1. Speed up Magento by Clean database log
It ‘s easy to understand that your magento can’t work well with a huge database. Many store keep too much the data they ‘ve never used. So let ‘s clean it in easy way by Optimize magento database by Cleaning log . It shouldn’t take you more 30 minutes to do but get a very good effect.
2. Caching configuration for Magento
mangafox
Magento is designed so it focus to caching very much to have the best performance, but the default caching engine of magento is File System. They use it just because all of servers support it. But File System cache is the slowest caching engine. We need to configure magento to get it faster by other caching engine. My experience about speed up magento by caching engine is this flow from slow to fast.
File System => APC => Memcached => Redis cache => Varnish cache
The question is: why we don’t use Varnish cache in the most performance speed for all of magento sites? Because it take an advantage development and maintain so that only use it in the case you really need a very high speed. Maybe you don’t know that you can speed up magento roughly 200 times in practice with Varnish.
3. Magento server configuration optimization
This is a long instructions to speed up magento by server optimization. Basically, you need a very good magento hosting to get it make sense to do all of configuration or it just make your magento site crash and doesn’t work. Instead of play around too hard with server configuration and installation, I will show you how to choose a very good hosting with good price and support.
It is not easy to choose a good magento hosting provider to get your magento work well. The most case you only need shared web hosting what support everything for Magento. And your hosting provider must have magento expert to help you solve problem come from Magento. Our recommend is SiteGround Magento Hosting package. They have everything you need include Memcached what can help you speed up a lot.
And finally, the last thing after you buy a good host is follow this article instruction How to Optimize Magento Performance?
4. MySQL configuration optimization
A little bit advance but let me bring to here too. If you’re a mysql hero, you don’t need me to tell you how but we want to try and get the following settings in your my.cnf
1
2
3
query_cache_type = 1
query_cache_size = 32M
query_cache_limit=2M
If you don’t have root access to check /etc/my.cnf (or /etc/mysql/my.cnf) variables, then login to mysql or use phpmyadmin to show variables.
1
2
$ mysql -u mysqluser -p magento_database_name
$ mysql> SHOW VARIABLES;
And finally do a little setting for php.ini
1
php_value memory_limit 128M
5. Advantage performance optimization
– This is come in a too complex works what I can’t write everything here. Basically, the magento system is complex and one of the way to speed up magento is make strategy for caching in process workflow. This can be done by Full page caching extension.
– Another caching way what can help you a lot in caching with combine server and magento process is Varnish caching with Varnish magento extension. You can find out here. But it is not easy to install and configure at all.
If you need help for this you can contact us to have a quote for your site.
Bookmarks