Azure 队列存储消息大小

发布于 2024-11-27 17:50:11 字数 271 浏览 0 评论 0原文

来自此 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 技术交流群。

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

发布评论

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

评论(1

人心善变 2024-12-04 17:50:11

字符串的字节大小取决于您的编码。例如,这就是获取 UTF8 编码的方法。

var byteSize = System.Text.Encoding.UTF8.GetBytes(xml).GetLength(0);

The byte size of a string is dependant on your encoding. This is how you get it for the UTF8 encoding, as example.

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