Book Image

Hands-On Full-Stack Web Development with ASP.NET Core

By : Tamir Dresher, Amir Zuker, Shay Friedman
Book Image

Hands-On Full-Stack Web Development with ASP.NET Core

By: Tamir Dresher, Amir Zuker, Shay Friedman

Overview of this book

Today, full-stack development is the name of the game. Developers who can build complete solutions, including both backend and frontend products, are in great demand in the industry, hence being able to do so a desirable skill. However, embarking on the path to becoming a modern full-stack developer can be overwhelmingly difficult, so the key purpose of this book is to simplify and ease the process. This comprehensive guide will take you through the journey of becoming a full-stack developer in the realm of the web and .NET. It begins by implementing data-oriented RESTful APIs, leveraging ASP.NET Core and Entity Framework. Afterward, it describes the web development field, including its history and future horizons. Then, you’ll build webbased Single-Page Applications (SPAs) by learning about numerous popular technologies, namely TypeScript, Angular, React, and Vue. After that, you’ll learn about additional related concerns involving deployment, hosting, and monitoring by leveraging the cloud; specifically, Azure. By the end of this book, you’ll be able to build, deploy, and monitor cloud-based, data-oriented, RESTful APIs, as well as modern web apps, using the most popular frameworks and technologies.
Table of Contents (22 chapters)
Title Page
PacktPub.com
Contributors
Preface
Index

Scaling your service


An application that is running on a web server can only process requests that can fit the computing resources that the server contains. As more requests are sent to the application, resources begin to decrease, and at some point, new requests will start to fail and our customer will start experiencing a degradation of service and performance.

The ability of your service to handle increasing amounts of requests is called Scalability, and there are two ways in which your service can scale: Scale Up and Scale Out.

 

Scaling up your App Service 

To scale up a service means that you add more resources to the infrastructure it is running on: CPU, memory, disk, network bandwidth, and so on. This is also known as vertical scaling. The resources that your App Service is running on are represented by the App Service plan that you created in Chapter 15Deploying to Microsoft Azure. At any point, you can change your App Service plan and increase or decrease the resources that your...