1

What do you guys suggest to modify in Magento core to speed it up, without breaking anything?

Like disabling modules via xml files or modifying checkout to remove observers.

7ochem
7,61516 gold badges54 silver badges82 bronze badges
asked Jul 20, 2015 at 10:00

1 Answer 1

3

Generally, you shouldn't ever be editing Core (or making any of the other common mistakes new Magento developers often make when attempting to customize / improve performance), if for no other reason than you will not be able to install security patches when released (the patches will only work on unmodified copies of core).

Additionally, there's a lot of on things that you can do to optimize magento that don't mess with Core, Ben Lessani provides an amazingly detailed breakdown of the core items to address before considering touching anything in Core:

  • Page Caching
  • Data Caching
  • Opcode Caching
  • Front-end Varnish
  • Redis / Memcache for back-end session state storage
  • Server Architecture
  • Geographic location of hosting environment compared to expected usage
  • Proper Theme customization best practices etc...

I wouldn't recommend doing this i production as a new Magento developer, but if you really want to learn about the core areas that COULD use improvement, you'd have to to turn to Ivan Chepurny's Fixing Magento's Core for better performance though you're probably better off starting with his Making Magento flying like a rocket presentation.

answered Jul 20, 2015 at 10:23

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.