Performance Azure Blob vs Azure Table

ぐ巨炮叔叔 提交于 2019-12-05 02:02:23

I agree with Andrei M. The best solution is blob storage with a table service or even a sql database to store reference.

Just one more thing, if you plan to search for content in those file, neither table service / blob will be good for that. If that's the case, I recommend you setup a VM with elastic search / solr and index those contents.

PS: there's also Azure Search, for that, you can give it a try too.

Blob storage is better then Table storage if you want to work with files. I definitely would not want to deal with file chunks in a table. If you need to keep references to your blobs, how about combining two options and use Table storage for references? I think this would be the best in terms of performance :).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!