Scalability in systems . Net

Asked

Viewed 50 times

0

I am developing a system in VB.Net (Windows Forms), which uses Mysql database. I intend to make it available in the cloud, what would be the best way to ensure scalability in the application / database, using cloud computing? Switch to Web based application, with Asp.net?

If anyone has any tips or materials about this paradigm, it would be great!!!

  • 1

    @Caputo Although it does not seem, this question can be answered objectively.

  • 1

    Thanks @Ciganomorrisonmendez, I had no knowledge about, and in doubt I also did not signal. Already excludes the other comment. []s

1 answer

1

What would be the best way to ensure scalability in the application/ database, using cloud computing?

Using asynchronous architecture in ASP.NET MVC. Basically, its Controllers need to have the following in the statement:

public async Task<Modelo> Index() {
    ...
}

In this other answer give some details of how requests work.

The Azure environment is already configured to use a distributed transaction coordinator and the Framework. Latest NET (accepting new ASP.NET MVC applications up to version 5 on the date of this reply, the latest).

Not worth writing a tutorial here because there is already this tutorial on the official website (in English). Just read the concepts, implement the examples, and if there are questions, we will be answering your questions here.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.