可以为多个发布者使用相同的订阅表吗?
我有多个发布商希望将其订阅信息保留在存储中。他们可以在同一个数据库中使用同一个表吗?还是我需要将它们分开?
I have multiple publishers which want to persist their subscription info in storage. Is it okay for them to use the same table in the same database, or do I need to separate them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。
在我们正在工作的一个大型项目中,我们有一个像您所描述的那样的设置,并且它的工作方式非常有魅力。
我们有几个相互通信的 Windows 服务。所有服务都使用同一数据库中的同一表来管理其订阅,而不会发生任何冲突。
Yes, it is possible.
In one of our huge projects at work we have a setup like you describe it and it works like charm.
We have several windows services communicating with each other. All services use the same table in the same database to manage their subscriptions without any conflicts..