php-部署网站之前需要做哪些改进?

我目前正在从事Web开发中的第一个小型商业项目.

性能始终至关重要,因此我想知道在将我的网站放置在服务器上之前应遵循哪些步骤,以确保性能达到最佳状态.

>我听说有一些工具可以将项目中的所有变量重命名为一个字母变量,并删除换行符,以便仅通过互联网发送最少的数据,从而提高性能
>我喜欢将较小的文件创建为某些模块,然后将其放入index.php中,如下所示:

<html>
  <head>
    <?php include index_head.php ?> // here
  </head>
  <body>
    <nav>
    <?php include index_nav.html ?> // and here
    </nav>
  // and so on...

所提供的当然是您只需编写一次代码,然后将其链接到您想要的位置…这种使用是否会改变性能?
>还有其他建议吗?

解决方法:

I have heard there are some tools which rename all variables in a project to one letter variables and also delete new line characters, so that only the minimum of data is sent via the Internet and that improves performance

这就是所谓的“最小化”(使最小值),并且可以显着提高性能.在自动构建步骤中,我们会这样做.绝对要迈出这一步.有许多工具可供您使用. Google“缩小”或“缩小”.

上一篇:java-仅运行一次活动,然后始终运行主活动


下一篇:[BZOJ - 2819] Nim 【树链剖分 / DFS序】