适用于 Silverlight 或 Javascript 的强大 Azure 存储库(CloudBlob、PageBlob)
我正在寻找一个强大的 Azure 存储库,它可以访问 pageblob 和常规 blob,并具有与标准库一样多的错误检查和功能。
我对在任一解决方案中使用带有 PageBlob 的共享访问签名特别感兴趣。我的应用程序需要的核心功能是
列出页面 blob 并解析列出活动页面的 XML
使用平面层次结构搜索 blob
p>将结果作为二进制流处理
I'm looking for a robust Azure storage library that can access pageblobs and regular blobs, with as much error checking and features as the standard library.
I'm especially interested in using Shared Access Signatures with PageBlobs with either solution. Core features I need for to my application are
Listing page blobs and parsing the XML that lists active pages
Searching the blobs using a flat hierarchy
Processing the results as a binary stream
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 Microsoft 的存储客户端库是用于存储的 REST API 的包装器 (http://msdn .microsoft.com/en-us/library/dd179355.aspx),您可能需要编写自己的包装器来满足您的需求。一个很好的起点是 David Pallman 在 CodePlex 上的 Azure 存储示例项目 (http://azurestoragesamples.codeplex.com/) 或 Neil 关于 Windows Azure REST API 的博客 (http://convective.wordpress.com/2010/08/18/examples-of-the-windows-azure-storage-services-rest-api/" wordpress.com/2010/08/18/examples-of-the-windows-azure-storage-services-rest-api/)
Since Microsoft's Storage Client library is a wrapper over REST API for storage (http://msdn.microsoft.com/en-us/library/dd179355.aspx), you may want to write your own wrapper to suit your needs. A good starting point would be David Pallman's Azure Storage Sample project on CodePlex (http://azurestoragesamples.codeplex.com/) or Neil's blog on Windows Azure REST API (http://convective.wordpress.com/2010/08/18/examples-of-the-windows-azure-storage-services-rest-api/)