- Magento 2 Developer's Guide
- Branko Ajzele
- 202字
- 2021-07-30 09:53:23
The var directory
Magento does a lot of caching and autogeneration of certain class types. These caches and generated classes are all located in Magento's root var
directory. The usual contents of the var
directory is as follows:
cache composer_home generation log di view_preprocessed page_cache
During development, we will most likely need to periodically clear these so that our changes can kick in.
We can issue the console command as follows to clear individual directories:
rm -rf {Magento root dir}/var/generation/*
Alternatively, we can use the built-in bin/magento
console tool to trigger commands that will delete the proper directories for us, as follows:
bin/magento setup:upgrade
: This updates the Magento database schema and data. While doing this, it truncates thevar/di
andvar/generation
directories.bin/magento setup:di:compile
: This clears thevar/generation
directory. After doing this, it compiles the code in it again.bin/magento deploy:mode:set {mode}
: This changes the mode from the developer mode to the production mode and vice versa. While doing this, it truncates thevar/di
,var/generation
, andvar/view_preprocessed
directories.bin/magento cache:clean {type}
: This cleans thevar/cache
andvar/page_cache
directories.
It is important to keep the var
directory in mind at all times during development. Otherwise, the code might encounter exceptions and function improperly.
推薦閱讀
- Learn Blockchain Programming with JavaScript
- Redis入門指南(第3版)
- arc42 by Example
- Mastering Ember.js
- 樂高機(jī)器人設(shè)計技巧:EV3結(jié)構(gòu)設(shè)計與編程指導(dǎo)
- 軟件測試項目實戰(zhàn)之性能測試篇
- Koa開發(fā):入門、進(jìn)階與實戰(zhàn)
- Web程序設(shè)計(第二版)
- PHP+MySQL網(wǎng)站開發(fā)項目式教程
- Node.js Design Patterns
- SQL基礎(chǔ)教程(第2版)
- Bootstrap 4 Cookbook
- Test-Driven Machine Learning
- Developing SSRS Reports for Dynamics AX
- C++ Fundamentals