Skip to main content

Posts

Showing posts from June, 2020

BLOB STORAGE

Blob stands for Binary large object. we can store files , text , videos etc. Once we create a storage account, we can create containers ex: image where we can place the image files. The image img1 can be accessed by using the above url. The storage account name has to be uniques because in order to access the blobs the we need to a unique url.. that is http[s]:// storagename .blob.core.windows,net Virtual Directories instead of hierarchical structure Blob storage doesnt support a heirarchical structure, so we can create nested folders to group our files. but we can name the files based on whatever way we want to group the files. Ex: 2020/personal/images/img.jpg In short , there are no folders. It creates virtual directories and we can access the blobs using the url based on the path. TYPES 1. Block Blobs: we cant append data to existing ones, but we can replace the old file with a new one. Ex: image , video etc. So if we store the log file as a block blob the...