Windows 7 上 MSMQ 的存储容量
Windows 7 上的 MSMQ 有存储限制吗?我读到,对于 3.0 之前的版本,有 8GB 的限制。但在白皮书中又读到
MSMQ 3.0 消息存储现在仅受磁盘空间限制。特别是,MSMQ 3.0 放宽了每台计算机 2 GB 的存储限制。持久性 MSMQ 3.0 消息的理论容量限制现在为 1 太字节 (TB)。
有任何输入/指针吗?
Is there a storage limit for MSMQ on Windows 7? I read that for versions older than 3.0, there is a 8GB limit. But again in a white paper read
MSMQ 3.0 message storage is now limited only by disk space. In particular, MSMQ 3.0 has relaxed the 2 gigabyte (GB) storage limit per machine. The theoretical capacity limit for persistent MSMQ 3.0 messages is now 1 terabyte (TB).
Any input/pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MSMQ 实际上没有存储限制,因为 MSMQ 是一种消息传递服务,而不是数据存储服务(也称为“数据库”)。这是关于该主题的一篇优秀文章:
http://blogs.msdn.com/b/johnbreakwell/archive/2008/02/29/what-are-msmq-s-limits-if-i-had-a-farthing-for- every-time.aspx
总结是:如果您询问 MSMQ 的存储限制,那么您可能没有正确使用 MSMQ。
There's not really a storage limit for MSMQ, because MSMQ is a messaging service, not a data-storage service (a.k.a. a "database"). Here's an excellent article on the subject:
http://blogs.msdn.com/b/johnbreakwell/archive/2008/02/29/what-are-msmq-s-limits-if-i-had-a-farthing-for-every-time.aspx
The summary is: if you're asking about the storage limits of MSMQ, you're probably not using MSMQ correctly.