What are blobs, tables and Queues?
Till now we have only discussed about application code. With application you also need to save data. Windows Azure has three kinds of data blobs, tables and queues. Blobs: – They are used to store large objects like images, audio, video etc. Tables: – They are used to store durable and scalable data structure. Tables consist of entities and entities have properties. Figure: – Table structure Queues: – Queues are used enable asynchronous communication. They are enabled to store transient data in form of messages. Azure uses queues to communicate between different entities. For instance of a worker role and web roles wants to communicate they use queues. We will be discussing the above 3 things in more detail in the coming FAQ series. We will be dedicating each one of them a complete FA series. Till then hold your breath.