用于服务器的 C# GC
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它(仍然可用)。不,它不是(已弃用)。
为什么问这个问题?
关于参数的链接 http://architecturebyashwani.blogspot。 com/2010/02/foreground-gc-and-background-gc.html
4.0中甚至还新增了一个GC(工作站模式的后台),所以最终有3个GC;服务器、工作站并发开启、工作站并发关闭。
web.config
/app.config
的三个设置是:三个
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:The three
or
are "exclusive". You can enable only ONE option at a time :-)