Azure 队列存储消息大小
来自此 Windows Azure MSDN 线程,我理解的是队列消息大小 应该是8KB。我们可以通过6144字节*4/3(base64编码)来计算消息大小。
我们将消息存储为 XML 消息(字符串)。
C#中如何计算字符串的字节大小?
From this Windows Azure MSDN thread, I understand that the queue message size
should be 8KB. We can calculate the message size by 6144 byte * 4/3 (base64 encoding).
We are storing message as XML messages (string).
How to calculate the byte size from string in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
字符串的字节大小取决于您的编码。例如,这就是获取 UTF8 编码的方法。
The byte size of a string is dependant on your encoding. This is how you get it for the UTF8 encoding, as example.