ASP .NET Application_Start 事件 +连接到数据库

发布于 2024-12-26 06:53:47 字数 239 浏览 2 评论 0原文

我已经开始使用 ASP .NET MVC 3 框架开发完整的 Web 应用程序。 我是一名 MVC 3 初学者开发人员。

在服务器端,我将对数据库执行一些查询。 因此,我必须连接到数据库。

我想知道在每个操作方法的开头或在事件处理程序中建立连接是否更好。 我考虑过在 Application_Start 事件处理程序中建立连接,然后将代表我的连接的对象存储到应用程序状态中。 这种方式有缺点吗?

预先感谢您未来的答复

I have started developing a full-web application by using the ASP .NET MVC 3 framework.
I am a MVC 3 beginner developer.

On the server-side I am going to execute some queries to a DB.
Consequently I will have to make a connection to the DB.

I would like to know if it is better to make a connection in the beginning of each action method or in an event handler.
I have thought about making the connection in the Application_Start event handler and then storing an object representing my connection into the application state.
Does this way present disadvantages ?

Thanks in advance for your future answer

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

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

发布评论

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

评论(1

栖竹 2025-01-02 06:53:47

根据需要打开和关闭连接(而不是保持连接打开)。让连接池为您服务。

编写高性能 Web 应用程序的 10 个技巧(ASP.NET,但包含相关建议):

技巧 3 — 连接池

在 Web 应用程序和 SQL 之间设置 TCP 连接
Server™ 可能是一项昂贵的操作。微软的开发人员有
现在已经能够利用连接池一段时间了,
允许他们重用与数据库的连接。而不是
在每个请求上建立一个新的 TCP 连接,一个新的连接是
仅当连接池中没有可用连接时才设置。当
连接被关闭,它被返回到它所保留的池中
连接到数据库,而不是完全拆除该数据库
TCP 连接。

Open and close the connection as required (rather than keeping one open). Let connection pooling work for you.

10 Tips for Writing High-Performance Web Applications (ASP.NET but contains relevant advice):

Tip 3—Connection Pooling

Setting up the TCP connection between your Web application and SQL
Server™ can be an expensive operation. Developers at Microsoft have
been able to take advantage of connection pooling for some time now,
allowing them to reuse connections to the database. Rather than
setting up a new TCP connection on each request, a new connection is
set up only when one is not available in the connection pool. When the
connection is closed, it is returned to the pool where it remains
connected to the database, as opposed to completely tearing down that
TCP connection.

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