Azure Tables or SQL Azure?

前端 未结 11 932
無奈伤痛
無奈伤痛 2021-02-05 05:29

I am at the planning stage of a web application that will be hosted in Azure with ASP.NET for the web site and Silverlight within the site for a rich user experience. Should I u

11条回答
  •  暖寄归人
    2021-02-05 05:52

    For your question, I want to talk about how to decide with logic choose SQL Table and which need to use Azure Table.

    As we know SQL Table is a relational database engine. but if you have a big data in one table the SQL Table is not applicable, because SQL query get big data is slow.

    At this time you can choose Azure Table, the Azure Table query is so fast then SQL Table for big data, for example, in our website, someone subscribed many articles, we make the article as feed to user, every user have a copy of article title and description, so in the article table there are lots of data, if we use SQL Table, each query execution maybe take more than 30 seconds. But in Azure Table get users article feed by PartitionKey and RowKey is so fast.

    From this example you may know how to choose between in SQL Table and Azure Table.

提交回复
热议问题