Limiting the size of the managed heap in a C# application(限制 C# 应用程序中托管堆的大小)
问题描述
我能否配置我的 C# 应用程序以将其内存消耗限制为 200MB?IOW,我不想等待自动 GC(这似乎使堆增长得比这个应用程序实际需要的多得多).
Can I configure my C# application to limit its memory consumption to, say, 200MB? IOW, I don't want to wait for the automatic GC (which seems to allow the heap to grow much more than actually needed by this application).
我知道在 Java 中有一个命令行开关可以传递给实现此目的的 JVM.在 C# 中是否有等价物?
I know that in Java there's a command line switch you can pass to the JVM that achieves this.. is there an equivalent in C#?
附言
我知道我可以从代码中调用 GC,但我不想定期这样做.我宁愿在启动时设置一次然后忘记它.
I know that I can invoke the GC from code, but that's something I would rather not have to do periodically. I'd rather set it once upon startup somehow and forget it.
推荐答案
我不知道常规 CLR 有任何此类选项.我想如果你实现自己的 CLR 主机,你可以控制它.
I am not aware of any such options for the regular CLR. I would imagine that you can control this if you implement your own CLR host.
但是,我不同意您对堆增长方式的评估.堆增长是因为您的应用程序正在分配和持有对象.
However, I disagree in your assessment of how the heap grows. The heap grows because your application is allocating and holding on to objects.
您可以采取一些措施来限制内存使用量.请参阅此问题以获取一些输入:减少 .NET 应用程序的内存使用?
There are a couple of things you can do to limit the memory usage. Please see this question for some input: Reducing memory usage of .NET applications?
这篇关于限制 C# 应用程序中托管堆的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:限制 C# 应用程序中托管堆的大小
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01