我应该让我的数据库适配器类成为单例吗?

发布于 2024-10-31 16:21:17 字数 178 浏览 0 评论 0原文

我正在使用 来自 devx.com 的数据库适配器

我想知道我是否应该将其设为单例,以便我可以轻松地从多个不同的类中使用它,而不必担心多个实例?

I am using the database adaptor from devx.com

I was wondering if I should make it a singleton so I can easily use it from a number of different classes without having to worry about multiple instances?

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

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

发布评论

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

评论(1

药祭#氼 2024-11-07 16:21:17

虽然你的逻辑是正确的,但我认为你不应该这样做。考虑并发,例如。类 X 正在更新数据库,类 Y 正在同时从中检索值。所以你同时对数据库有2个操作;拥有单例可以防止这种情况,因为需要关闭/重新打开数据库连接。

Though your logic is valid, I dont think you should. Think of concurrencies, eg. class X is updating the database, and class Y is retreiving values from it at the same time . So you have 2 operations on the database at the same time; having a singleton shall prevent this, as the db connection needs to be closed/reopened .

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