我应该让我的数据库适配器类成为单例吗?
我正在使用 来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然你的逻辑是正确的,但我认为你不应该这样做。考虑并发,例如。类 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 .