当前位置: 首页 > 工具软件 > WinCache > 使用案例 >

php下iis频繁假死,php – Wincache扩展无法在IIS上正常工作(它仍然很慢|

黄高爽
2023-12-01

我花了很多时间才能让wincache工作,因为我在Symfony 2中的应用程序在我的

Windows 8上运行缓慢(初始化时间> 2s). Wincache解决方案在这里成立

https://stackoverflow.com/a/9487264

安装了IIS并将其安装在phpinfo()中.但问题是我的申请仍然很慢.我试图搜索出错了,看起来reroute.ini没有加载到al,即使它在php.ini中也是如此

wincache.rerouteini="C:\Program Files (x86)\iis express\PHP\v5.5\reroute.ini"

但它在phpinfo()中缺失

我甚至查看了pecl上的源代码,我发现了

#ifdef WINCACHE_TEST

/* index 21 */ STD_PHP_INI_ENTRY("wincache.rerouteini", NULL, PHP_INI_SYSTEM, OnUpdateString, rerouteini, zend_wincache_globals, wincache_globals)

/* index 22 */ STD_PHP_INI_ENTRY("wincache.olocaltest", "0", PHP_INI_SYSTEM, OnUpdateBool, olocaltest, zend_wincache_globals, wincache_globals)

#endif

那是什么?这意味着只有当常量WINCACHE_TEST为真时才会出现此选项?因为那从来没有,因为我也发现了这一点

#ifdef WINCACHE_DEBUG

# define WINCACHE_TEST

# define _ASSERT(x) if(!(x)) { dprintalways(#x); if(IsDebuggerPresent()) { DebugBreak(); } }

#else

# define _ASSERT(x)

#endif

并且常量WINCACHE_DEBUG在代码中被注释掉

/* comment following line for release builds */

/* #define WINCACHE_DEBUG */

/* #define DEBUG_DUMP_OPARRAY */

这个错误吗?我只想得到reroute.ini(http://www.php.net/manual/en/wincache.reroutes.php)的工作.这个选项可以减少4x的初始化时间,请帮助我有错误,或者在这里发送功能wincache扩展为PHP5.5 VC11 NTS版本,thx!

 类似资料: