zoukankan      html  css  js  c++  java
  • zendframework3

    1、开发时关闭cache,正式上线后打开cache

    application config file (config/application.config.php),  disable this cache

    remove config/development.config.php.dist configuration file

    或者使用composer development-enable 开启开发模式

    $ composer development-enable  # enable development mode
    $ composer development-disable # disable development mode
    $ composer development-status  # whether or not development mode is enabled

    生产运营时,关闭开发模式
    set the display_not_found_reason and display_exceptions parameters to false in production systems in module.config.php

    2、autoload

    新添加module时,编辑composer.json  change autoload section;

    using Composer's autoloading capabilities. As such, we need to inform Composer of our new namespace, and where its files live.

    "autoload": {
        "psr-4": {
            "Application\": "module/Application/src/"
        }
    },

    在Application module后面添加自己的module,添加完后执行composer dump-autoload
    run the following to ensure Composer updates its autoloading rules: composer dump-autoload



  • 相关阅读:
    Bash : 冒泡排序
    Azure Load Balancer : 支持 IPv6
    Azure Load Balancer : 简介
    sudo 与输出重定向
    Linux lsof 命令
    Bash : IO 重定向
    LVM : 快照
    2014年全年总结
    使用Kindle4rss推送自己感兴趣的博文
    换SSD硬盘,重装系统,一阵子忙乱
  • 原文地址:https://www.cnblogs.com/yipianchuyun/p/11130055.html
Copyright © 2011-2022 走看看