- What are the two hosts available to ASP.NET Core 3?
Kestrel and HTTP.sys.
- What are the two kinds of cache that are available?
In-memory and distributed.
- What is the benefit of compressing a response?
Minimizing the latency of the response.
- What is the purpose of caching a response?
Avoiding the need to request and send responses.
- Do asynchronous actions improve performance?
No, but they improve scalability.
- What is bundling?
Bundling is the combining of multiple files in a single response.
- What are profilers good for?
They can show us what parts of our code are...