vote up 4 vote down star
1

Is Magento usually so terrible slow?

This is my first experience with it and the admin panel simply takes ages to load and save changes. It is a default installation with the test data.

The server it is hosted on serves other non-Magento sites super fast. What is it about the PHP code that Magento uses that makes it so slow, and what can be done to fix it?

flag

2  
What hardware are you running it on? Magento needs some serious hardware backing in my experience. – jitter Oct 28 at 18:35
This is a support issue with a specific user application, not a programming question. If you do some investigation into the code, and post a more detailed question regarding what you found, and ask why a particular section of code might take too long, then it would be appropriate here. – Adam Davis Oct 28 at 18:37
I am not asking for support, but code. My hope was that someone had experienced this in the past and had optimised the code to avoid such sluggish behaviour. I do not have a specific snippet of code to point at since it is applicable across the entire site. I will have to look further into the matter. – mr-euro Oct 28 at 18:43
@jitter How much is "serious hardware"? – mr-euro Oct 28 at 18:44

3 Answers

vote up 7 vote down check

I've only been tangentially involved in optimizing Magento for performance, but here's a few reasons why the system is so slow

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

  2. 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) are huge. Also, unless caching is on, these tree are built up from files on disk and on each request.

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

  4. Besides the layout system, Magento's template system involves a lot of recursive rendering. This ads up.

In general, the Magento Engineers were tasked, first and foremost, with building the most flexible, customizable system possible, and worry about performance latter.

The first thing you'll want to do to ensure better performance is turn caching on (System -> Cache Management). This will relive 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/or 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.

link|flag
1  
Thank you for the extensive explanation. Magento is indeed very powerful while allowing for flexibility. I initially thought it was simply the DB writes stalling due to some badly written SQL, but I do realise now that there is much more going on behind the scenes that initially expected. As a note: caching was disabled due to products being added by the shop owner. When cache was on he complained of products not appearing forcing me to disable caching while the shop was being set up. It is being hosted on a dedicated server, but it seems I will have to move Magento to its own exclusive box. – mr-euro Oct 30 at 10:37
vote up 4 vote down

Further to Alan Storm's recommendations on caching, there's two things I'd specifically recommend you look into related to caching:

- Make sure caching is in memcached, rather than on disk.

I look after a couple of magento installs, and once you get any sort of load on the system, memcached starts to perform much faster. And its dead easy to change it over (relative to doing other magento stuff at least!)

Good starting point is here: http://www.magentocommerce.com/boards/viewthread/12998/P30/ - but if you've not used memcached at all before, its worth looking at some general info about it as well.

- Enable template/view caching.

This is a good article: http://inchoo.net/ecommerce/magento/magento-block-caching/

There are good ones on the magento site too (google magento block caching), but its down at the moment.

To add my two cents to the block caching, I'd advise you create your own blocks in /app/code/local, extending the core ones and defining the cache parameters, name them xxx_Cache and then update your layout to use these blocks instead of the core ones. This way, you avoid losing your changes or breaking the system when you upgrade magento.

link|flag
1  
Thx for the points. I will have a look at memcached which I have not used in production before. Good idea about cloning the blocks too. – mr-euro Oct 30 at 10:30
1  
I second what benlumbey said, I don't use memcached as I'm running windows server , but I store the /var directory in a solid state drive and that has made a big difference for me. – Rick J Nov 2 at 5:15
@rickj - yeah, anything to make ./var folder faster definitely helps, i've tried using tmpfs before memcached as well, and got a decent boost off of that too. – benlumley Nov 2 at 19:28
vote up 3 vote down

You can try this - not guaranteed to work but has helped a lot of people:

http://inchoo.net/ecommerce/magento/boost-the-speed-of-your-magento/

link|flag
Thx Sam, actually I already had come across it via Google, although those changes in the .htaccess file did not seem to speed things up too dramatically. – mr-euro Oct 30 at 10:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.