Magento – How to speed up Magento2’s Admin/Backend

adminmagento2performance

How to speed up Magento2's Admin/Backend?

I have tried http://suyati.com/speed-up-magento-admin-backend/ with no luck.

Best Answer

are you in production mode? in developer and default mode all static files are processed through a php script which is pretty slow.

If not in production mode the Less Processing also takes pretty much time.

All other possibilities to speed up the backend would be having all caches enabled and using a faster cache backen (like redis)

http://devdocs.magento.com/guides/v2.0/config-guide/redis/config-redis.html

Related Topic