- 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.
- JavaScript高效圖形編程
- .NET 4.0面向對象編程漫談:基礎篇
- TestNG Beginner's Guide
- INSTANT CakePHP Starter
- GitLab Repository Management
- 軟件架構:Python語言實現
- 從0到1:Python數據分析
- C語言程序設計上機指導與習題解答(第2版)
- Python Data Structures and Algorithms
- Statistical Application Development with R and Python(Second Edition)
- Java Web從入門到精通(第3版)
- C語言程序設計
- Tableau Desktop可視化高級應用
- Apache Solr PHP Integration
- Java EE架構設計與開發實踐