Azure Storage types

Blob storage. Containers for data blobs. The three types of blobs are:

    1. Page blobs: Optimized for random access, 512-byte pages, Azure virtual machine disk files
    2. Block blobs: Optimized for sequential large access, variable-sized blocks, ideal for media and backups
    3. Append blobs: Optimized for append operations only, Ideal for logging

Table storage. Store for non-relational key/value entities(pairs) in rows, single clustered index

Queue storage. Temporary store for asynchronous exchange of messages(inter-application)

File storage. File sharing store through SMB 3.x and SMB 2.1

Controlling access to storage

Storage account access keys:

Primary and secondary
Automatically generated but can be recycled
Provide full access to a storage account

shared access signatures(SAS):

Granular (container or resource level)
Time-limited

Stored access policy:

Granular (container level)
Time-limited
You can easily revoke policy-linked SAS

Role-based access control:

Default roles
Custom roles

Specify an access level(blob storage only):

Private
Public Blob
Public Container

最新文章

  1. 换个角度看微信小程序[推荐]
  2. 细谈Slick(6)- Projection:ProvenShape,强类型的Query结果类型
  3. webstorm编辑RN代码提示功能
  4. Jmeter学习一:Jmeter性能测试环境搭建(Windows下)
  5. 【转】【UML】使用Visual Studio 2010 Team System中的架构师工具(设计与建模)
  6. poj.1094.Sorting It All Out(topo)
  7. 【js】undefined
  8. PHP学习笔记(1) - 开发环境搭建
  9. OD: Register, Stack Frame, Function Reference
  10. 将窗体显示在 PageControl 上
  11. hdu3790最短路径问题 (用优先队列实现的)
  12. zend studio代码字体修改字体和大小.
  13. EasyUI DataGrid及Pagination
  14. 30分钟快速学习Shell脚本编程
  15. 第一次面试&第一次霸面
  16. 初识在Spring Boot中使用JPA
  17. Unity3D核心技术详解
  18. 【css3】使用filter属性实现改变svg图标颜色
  19. nodejs前端接口与状态转换调试
  20. Telephone Phrases

热门文章

  1. 第四周结对项目总结及改进(ui/web)
  2. JS中小数相加相减时出现很长的小数点的解决方式
  3. 51nod 1035 最长的循环节
  4. 设计模式六: 模板方法(Template Method)
  5. Sql 四大排名函数(ROW_NUMBER、RANK、DENSE_RANK、NTILE)简介
  6. pm2,部署nodejs,使用方法及自己使用后总结的经验
  7. intellij idea创建maven项目
  8. SpringBoot图片上传(三)——调用文件上传项目的方法(同时启动两个项目)
  9. java 根据Url下载对应的文件到指定位置,读txt文件获取url
  10. std::array中的std::get<n>()