小组花了这么长时间......终于超时了?
我的网站集中有大约 300,000 个用户,同一网站集中有大约 250 个组。当我尝试打开任何组以让用户加入其中时。花了这么长时间,最后显示“请求超时”。除此之外......网站集工作正常。
如何才能不耽误正常开团?
I have around 300,000 users in the site collection and around 250 groups in the same site collection. When I am trying to open any group to get users in it. It is taking so long and finally it is showing "Request time out". another than that.... site collection is working fine.
How can open groups normally with out delay?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议尝试增加
\12\TEMPLATE\LAYOUTS
下共享 web.config 中的默认执行超时默认为 6 分钟(360 秒),您可以尝试将其增加到 20分钟
这将为工作进程提供更多时间来执行其工作。因此,它不会解决您的问题“立即打开”,但它有望避免可怕的“请求已超时”,
我想通过 Reflector 的一个小峰值可能会在 UI 管理/检索组用户的方式中看到一些脏东西。因此,将取代内置组管理的自定义、代码改进的管理页面可能是一个可能的解决方案。
I would advice to try to increase the default execution timeout in the shared web.config under the
\12\TEMPLATE\LAYOUTS
By default, it's 6 minutes (360s), you can try to increase it to 20 minutes
That will allow more time for the working process to execute its job. It will thus not solve your question "opening without delay" but it will hopefully avoid the dreaded "request has timed out"
I guess a little peak through Reflector might see something dirty in the way the UI is managing / retrieving the group users... A custom, code improved, administration page that will replace the built-in group management might thus be a possible solution.