PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 13374929 bytes) in script.php on line 2
第 2 行是
session_start();
.
会话存储在memcached
守护进程中(通过php.ini session.save_path
默认的 memcached 设置设置(最大条目为 1mb),这意味着会话数据本身不应该那么大。
调试建议?