Speed up Magento development workflow
There are some quick wins you can get with little effort, to speed up your Magento development workflow.
Cache
One quick win is enabling your cache.
Redis
Before we get started, I’d like to strongly advise you to use redis as caching backend for you development setup. It’s way faster than file based caching and will help us out later in this post. If you’re able to use Redis as caching backend, you can configure it in Magento by running:
Enabling the cache
To enable the cache, run:
Now if you look at which caches are enabled:
You can see that full_page, block_html, config and layout is enabled. That’s going to be annoying, because you’re probably going to be working a lot in these areas. We can work around that.
Run the following command to disable block_html and full_page.
Great, but what about layout and config cache? When you enable these caches you’ll save a lot of time. XML merging takes a long time, so it’s a waste to not store it in cache.
There is a cool trick you can do to make sure you bust caches when you change XML files while programming.
The first step is to open up your PhpStorm project.
Then you want to go to settings and go to Tools -> File Watchers
. Click on the +
button and choose the custom template.
Give the watcher a name and select XML as File type.
If you have configured Redis as caching backend, you can set redis-cli
as program and enter -n 0 flushdb
as arguments.
If you haven’t, select the path to your bin/magento
executable in your project and enter cache:flush
as arguments.
My file watcher usually looks like this:
As mentioned earlier, I strongly advice to use Redis cache, because it’s a faster backend, but also because it’s way faster to flush:
bin/magento cache:flush
takes 2-5 seconds to flush, you’ll have to wait before refreshing your browser.redis-cli -n 0 flushdb
takes < 0.5 seconds to flush, it almost happens instantly.