Why is Magento so slow?
Is Magento usually so terribly slow?
This is my first experience with it and the admin panel simply takes time to load and save changes.
The server where it is hosted serves other non-Magento sites super fast. What about the PHP code that Magento uses that makes it so slow, and how to fix it?
Deepak Maurya
There is possibly also a very non-obvious reason why your admin interface is very slow. Magento has a module named Mage_AdminNotification. Try to disable that ext. Because what it does is query magentocommerce.com for new update messages. If their servers are slow your admin page waits and is in effect slow because of the network lag and loading of the external news. If you have secured your outgoing server connection through a firewall this can be even more frustrating, since the admin interface will wait for the timeout when it cannot reach magentocommerce.com
To disable it: go to System -> Configuration, scroll to the bottom and hit Advanced(in the Advanced section). Now disable Mage_AdminNotification and save!
Gurpreet Singh Padam
I’ve only been tangentially involved in optimizing Magento for performance, but here are a few reasons why the system is so slow
Parts of Magento use an EAV database system implemented on top of MySQL. This means querying for a single “thing” often means querying multiple rows
There’s a lot of things behind the scenes (application configuration, system config, layout config, etc.) that involve building up giant XML trees in memory and then “querying” those same trees for information. This takes both memory (storing the trees) and CPU (parsing the trees). Some of these (especially the layout tree) is huge. Also, unless caching is on, these trees are built up from files on disk and on each request.
Magento uses its configuration system to allow you to override classes. This is a powerful feature, but it means anytime a model, helper, or controller is instantiated, extra PHP instructions need to run to determine if an original class file or an override class files is needed. This adds up.
Besides the layout system, Magento’s template system involves a lot of recursive rendering. This adds up.
In general, the Magento Engineers were tasked, first and foremost, with building the most flexible, customizable system possible, and worry about performance later.
The first thing you can do to ensure better performance is turning caching on (System -> Cache Management). This will relieve some of the CPU/disk blocking that goes on while Magento is building up its various XML trees.
The second thing you’ll want to do is ensure your host and operations team has experience performance tuning Magento. If you’re relying on the $7/month plan to see you through, well, good luck with that.