用于服务器的 C# GC

发布于 2024-10-27 05:46:55 字数 73 浏览 2 评论 0原文

Server GC(配置中的 gcServer 标志)在 .Net 4.0 中可用吗?或者它已被弃用?

谢谢你!!!

Is Server GC (gcServer flag in configuration) available in .Net 4.0? Or it was deprecated?

Thank you!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心碎的声音 2024-11-03 05:46:55

是的,它(仍然可用)。不,它不是(已弃用)。

为什么问这个问题?

关于参数的链接 http://architecturebyashwani.blogspot。 com/2010/02/foreground-gc-and-background-gc.html

4.0中甚至还新增了一个GC(工作站模式的后台),所以最终有3个GC;服务器、工作站并发开启、工作站并发关闭。

web.config/app.config 的三个设置是:

<configuration> 
    <runtime> 
        <gcConcurrent enabled="false"/> 
<!-- or -->
        <gcConcurrent enabled="true"/> 
<!-- or -->
        <gcServer enabled="true"/> 
    </runtime> 
</configuration> 

三个 or 是“独占”的。您一次只能启用一个选项:-)

Yes, it's (still available). No, it isn't (deprecated).

Why the question?

A link on the argument http://architecturebyashwani.blogspot.com/2010/02/foreground-gc-and-background-gc.html

There is even a new GC (background for workstation mode) in 4.0, so in the end there are three GC; server, workstation concurrent on, workstation concurrent off.

The three settings for web.config/app.config are:

<configuration> 
    <runtime> 
        <gcConcurrent enabled="false"/> 
<!-- or -->
        <gcConcurrent enabled="true"/> 
<!-- or -->
        <gcServer enabled="true"/> 
    </runtime> 
</configuration> 

The three or are "exclusive". You can enable only ONE option at a time :-)

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