- ASP.NET Core 2 High Performance(Second Edition)
- James Singleton
- 210字
- 2021-07-08 09:39:08
Tools
Good debugging tools are essential when you're trying to discover where problems lie. You could write your own crude timing code, and we will show you how to get started with this. However, purpose-built tools are much nicer to work with than simply logging lines of debug information. VS 2017 includes some very useful Application Insights tools that make helpful information easily visible.
Many of the tools discussed in this chapter help you examine areas external to your code. We will cover the profiling of code too, but it's hard to identify problems this way unless the work is purely computational. Slowdowns often happen because of actions your app initiates outside of its immediate stack, and these can be hard to debug by simply stepping through the code. VS 2017 can show you what external actions your app takes, for example, triggering an HTTP API call.
Moving through your program line by line slows down the execution so much that it can make it difficult to identify which lines are fast and which are slow. However, VS does display the time taken since the previous debug step, which can help with this. Nevertheless, the same approach taken for fixing functional bugs cannot always be applied to fix performance issues.
- 大學計算機基礎(第2版)(微課版)
- Linux操作系統基礎案例教程
- Mastering Drupal 8 Views
- Python深度學習原理、算法與案例
- Android嵌入式系統程序開發:基于Cortex-A8(第2版)
- 微信小程序開發邊做邊學(微課視頻版)
- Python機器學習
- 零基礎入門學習C語言:帶你學C帶你飛
- Implementing OpenShift
- Effective DevOps with AWS
- Cocos2D權威指南
- Mockito for Spring
- Python架構模式:精通基于Python的API設計、事件驅動架構和包管理
- C#從入門到精通(第5版)
- Spark內核設計的藝術:架構設計與實現