小组花了这么长时间......终于超时了?

发布于 2024-10-08 20:10:07 字数 123 浏览 2 评论 0原文

我的网站集中有大约 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹏雨一样淡蓝的深情 2024-10-15 20:10:07

我建议尝试增加 \12\TEMPLATE\LAYOUTS 下共享 web.config 中的默认执行超时

默认为 6 分钟(360 秒),您可以尝试将其增加到 20分钟

<system.web>
   <httpRuntime executionTimeout="1200" />
</system.web>

这将为工作进程提供更多时间来执行其工作。因此,它不会解决您的问题“立即打开”,但它有望避免可怕的“请求已超时”,

我想通过 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

<system.web>
   <httpRuntime executionTimeout="1200" />
</system.web>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文