VS 2010:<编译调试=“假” //system.web>对于非网络应用程序?

发布于 2024-12-02 15:23:58 字数 245 浏览 2 评论 0 原文

在网络应用程序中,有这些节点和属性:

<system.web>
    <compilation debug="false" />
</system.web>

我读过在生产环境中关闭它可以提高性能。但是,对于控制台应用程序等非网络应用程序来说,这是否存在?我们使用控制台应用程序来托管对数据层操作进行大量调用的服务,我想知道是否有一种方法可以对其进行调整以尽可能提高性能。

In web apps, there are these nodes and attributes:

<system.web>
    <compilation debug="false" />
</system.web>

I had read that turning this off in a production environment improves performance. However, does this exist for non-web-apps like console apps? We use a console app to host services which make heavy calls to data layer operations and I am wondering if there's a way to tweak it to enhance performance any that we can.

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

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

发布评论

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

评论(1

不离久伴 2024-12-09 15:23:58

只需在发布模式下构建您的应用程序,所有可能的优化都会在您的代码上执行。

这里是 stackoverflow 上关于差异以及是否有一些优化的讨论。不管怎样,与其做一些技术上的优化,不如优化应用中的逻辑。

Just build your application in Release mode and all possible optimization will be performed on your code.

Here is discussion on stackoverflow about differences and if it have some optimization. Anyway it's better to optimize logic in application instead of some technical optimization.

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