清除Azure App服务PHP缓存

时间:2016-12-05 14:42:02

标签: php azure caching

我正在修改存储在Azure App服务上的PHP文件。在我编辑文件时,我的Azure站点继续使用该文件的缓存版本。到目前为止,我可以看到更改的唯一方法是重新启动App服务。

有没有办法从缓存中删除文件或删除整个缓存?

2 个答案:

答案 0 :(得分:2)

我问MSFT支持。这解决了缓存问题: 转到Application settings,滚动到App settings并添加以下内容: 关键:WEBSITE_DYNAMIC_CACHE 价值:0

答案 1 :(得分:0)

默认情况下,IIS上有response buffer个设置。我们可以利用How to: Use a custom PHP runtime的提示修改应用程序根目录中web.config的设置。

我们可以使用Azure内置PHP运行时而不是上面提到的自定义PHP运行时,请考虑web.config中的以下内容:

<configuration>
      <system.webServer>
         <handlers>
            <add name="PHP-FastCGI" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="D:\Program Files (x86)\PHP\v5.6\php-cgi.exe"
               resourceType="Either" requireAccess="Script" responseBufferLimit="0"/>
         </handlers>
      </system.webServer>
</configuration>

如有任何疑问,请随时告诉我。