REDIS配置后,Magento 2管理员加载非常慢
我在Magento 2.4.3上配置了Redis。但是之后,我的管理加载非常慢。当我调试时,我在Redis中发现会话请求正在返回
“ hincrby”“ SESS_LLM5DIFQVA5DPP955O4ANSHT8H”“ lock”“ 1”
带有多个请求,这就是为什么要加载管理面板的原因。有人面对这个问题,如果是,您可以分享解决方案吗?在Google上,我找到了一个链接 /a>,但没有解决方案。
I configured the redis on Magento 2.4.3. But after that my admin loading is very slow. When I debug then I found there in redis for session requests it is returning
"HINCRBY" "sess_llm5difqva5dpp955o4ansht8h" "lock" "1"
with multiple request that's why it is taking time to load in admin panel. Did anyone face this issue, if yes then can you please share the solution? On google I found one link https://github.com/colinmollenhour/Cm_RedisSession/issues/92 but there is no solution for it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
AT
数组会话[redis] [disable_locking]
是0('disable_locking'=>'0'0'
),应该为
'disable_locking'=&gt ; '1'
In your
at
array session[redis][disable_locking]
is 0 ('disable_locking' => '0'
,)it should be
'disable_locking' => '1'