如何将数组的内容存储在表存储中
我需要将数组的内容存储到 Azure 表存储中。该数组将包含 0 到 100 个条目。我不想创建 100 个不同的元素,所以有没有办法可以打包数组、存储它并稍后解包。任何例子将不胜感激。我只是不知道从哪里开始:-(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要将数组的内容存储到 Azure 表存储中。该数组将包含 0 到 100 个条目。我不想创建 100 个不同的元素,所以有没有办法可以打包数组、存储它并稍后解包。任何例子将不胜感激。我只是不知道从哪里开始:-(
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您需要将数组序列化为二进制或 xml,然后使用适当的列类型来存储数据(二进制对象或 xml)。XML
将是最灵活的,因为您仍然可以在值存储时查询它们。 (您无法查询二进制数据。无论如何都不容易。)这是 序列化,这是将值插入表中 。
有关 Azure 中 XML 支持的一些详细信息:
You need to serialize the array into binary or xml and then use the appropriate column type to store the data (binary object or xml.)
XML will be the most flexible because you can still query the values while they are in storage. (You can't query binary data. Not easily anyway.) Here is an example of serializing and here is one for inserting the value into a table.
Some detail on XML support in Azure:
如果您真的开始使用 Azure 表存储,那么这里有一些不错的“简单”教程 - 例如 http://blogs.msdn.com/b/jnak/archive/2008/10/28/walkthrough-simple-table-storage.aspx
一旦您对读/写实体感到满意,那么您可以通过多种方式将数组映射到表存储。
如果您不想单独访问它们,那么您可以将数组存储在表中的单个实体(行)中 - 例如使用 PartitionKey="MyArrays"、RowKey="" 并拥有另一列包含序列化为例如 JSON 的数组。
作为 2 的变体,您还可以将数组项 - 0 到 99 - 存储在行中的单独列(“Array_0”,...“Array_99”)中。 方法使用表存储实体上的读/写事件将其映射到一个不错的 C# 数组属性 - 但如果您开始使用 Azure,这可能不是最佳起点。
If you really are starting out in Azure Table Storage, then there are a few nice "simple" tutorials around - e.g. http://blogs.msdn.com/b/jnak/archive/2008/10/28/walkthrough-simple-table-storage.aspx
Once you are happy with reading/writing entities then there are several ways you can map your array to Table Storage.
If you ever want to access each element of your array separately from the persistent storage, then you should create 0 to 99 separate entities - each with their own entity in the Table store.
If you don't ever want to access them separately, then you can just store the array in a single entity (row) in the table - e.g. using PartitionKey="MyArrays", RowKey="" and having another column which contains the array serialised to e.g. JSON.
As a variation on 2, you could also store the array items - 0 to 99 - in separate columns ("Array_0",..."Array_99") in the row. There are ways you could map this to a nice C# Array property using the Reading/Writing events on the table storage entity - but this might not be the best place to start if you're beginning with Azure.
请注意,除了 1MB 实体限制之外,还有每个字段的限制(我认为是 64kb)。
您最好的选择是使用 Lokad Fat Entity
http://code.google.com/p/lokad-cloud/wiki/FatEntities
Be careful, besides the 1MB entity limit there is a per field limit as well (I think it's 64kb)
Your best bet is to use the Lokad Fat Entity
http://code.google.com/p/lokad-cloud/wiki/FatEntities