SlideShare uma empresa Scribd logo
1 de 121
Baixar para ler offline
twMVC#15 – 開發的效能與效率
Kevin Tseng
http://mvc.tw
 微軟最有價值專家(MVP)2013,2014
 twMVC 核心成員及講師 (http://mvc.tw)
 SkillTree 專任講師 (http://skilltree.my)
 部落格「mrkt 的程式學習筆記」
http://kevintsengtw.blogspot.tw
 Google+ 專頁
https://plus.google.com/+KevintsengtwBlogspot
簡介
2
3
效能 Performance
http://mvc.tw
 twMVC#8「超。光速 網站最佳化實戰」by demo
http://mvc.tw/Event/2013/3/30
 簡報
http://goo.gl/P7P8h2
今天不講怎麼調校網頁讓執行速度更快
4
http://mvc.tw
 TechEd North America 2014 [DEV-B418]
Performance Optimize Your ASP.NET Web App
Mads Kristensen
http://goo.gl/wFZBCU
今天不講怎麼調校網頁讓執行速度更快
5
Yahoo – Yslow (Why Slow)
6
https://developer.yahoo.com/yslow/
Web Developer Checklist –
ASP.NET Performance
7
http://webdevchecklist.com/asp.net/performance/
Web Developer Checklist
8
http://webdevchecklist.com/
Web Developer Checklist – ASP.NET
9
http://webdevchecklist.com/asp.net/
Web Developer Checklist –
Chrome Extensions
10
http://goo.gl/2DqFl
http://mvc.tw
 不要太早關注效能
 網頁執行慢,常常是開發時忽略了應注意而未注意的項目
 很多時候都是程式寫法而造成
 不當的 LINQ 操作
關於效能……
11
http://mvc.tw
如何觀察 EF 所產生的 SQL Command
12
http://mvc.tw
如何觀察 EF 所產生的 SQL Command
13
http://mvc.tw
如何觀察 EF 所產生的 SQL Command
14
http://mvc.tw
如何觀察 EF 所產生的 SQL Command – EF6
15
http://mvc.tw
如何觀察 EF 所產生的 SQL Command – EF6
16
http://mvc.tw
如何觀察 EF 所產生的 SQL Command – EF6
17
http://mvc.tw
 只有 Ultimate 版本才有此功能
Visual Studio - IntelliTrace
18
http://mvc.tw
Visual Studio - IntelliTrace
19
http://mvc.tw
 Clutch.Diagnostics.EntityFramework
https://github.com/Kukkimonsuta/Clutch
 Nuget
Install-Package Clutch.Diagnostics.EntityFramework
Entity Framework 5
20
P.S. 與 NLog 搭配使用
http://mvc.tw
Clutch.Diagnostics.EntityFramework
21
http://mvc.tw
Clutch.Diagnostics.EntityFramework
22
http://mvc.tw
Clutch.Diagnostics.EntityFramework
23
http://mvc.tw
 Logging and Intercepting Database Operations
http://msdn.microsoft.com/zh-tw/data/dn469464.aspx
 Entity Framework 6 Only
 與 NLog 搭配使用(也可使用 Log4Net …etc)
EF6 – Intercepting, Logging
24
http://mvc.tw
EF6 – Intercepting, Logging
25
http://mvc.tw
EF6 – Intercepting, Logging
26
http://mvc.tw
EF6 – Intercepting, Logging
27
http://mvc.tw
EF6 – Intercepting, Logging
28
29
MiniProfiler
http://mvc.tw
MiniProfiler
30
http://miniprofiler.com/
http://mvc.tw
 可分析系統裡透過 ADO.NET 所執行的 SQL Command
 顯示頁面執行所耗費的時間
 MS SQL Server, Oracle, MySql, Postgres …
 LINQ to SQL, Entity Framework, ADO.NET
 ASP.NET MVC, ASP.NET WebForms
 由 Stack Overflow 團隊所設計開發
 在 Stack Exchange 等系列網站都有使用.
MiniProfiler
31
http://mvc.tw
 透過 NuGet 安裝:
MiniProfiler,MiniProfiler.Mvc4,MiniProfiler.EF6
MiniProfiler
32
http://mvc.tw
 修改 _Layout.cshtml
MiniProfiler
33
http://mvc.tw
 修改 Global.asax
MiniProfiler
34
http://mvc.tw
 修改 Global.asax
MiniProfiler
35
http://mvc.tw
 修改 Web.Config
MiniProfiler
36
<system.webServer>
...
<handlers>
<add name="MiniProfiler" path="mini-profiler-resources/*"
verb="*" type="System.Web.Routing.UrlRoutingModule"
resourceType="Unspecified" preCondition="integratedMode" />
</handlers>
</system.webServer>
http://mvc.tw
MiniProfiler
37
http://mvc.tw
MiniProfiler
38
http://mvc.tw
MiniProfiler
39
http://mvc.tw
 安全性釋疑:預設只有在 Local 端才會顯示,Remote 下
並不會顯示
MiniProfiler
40
http://mvc.tw
 可在 Web.Config 裡加上開關,用來控制是否顯示
MiniProfiler
41
http://mvc.tw
MiniProfiler
42
http://mvc.tw
 改由 enable_profiling 與 Request.IsLocal
MiniProfiler
43
http://mvc.tw
 分層架構、AJAX
 結合權限機制限定角色才會顯示 MiniProfiler 視窗
MiniProfiler – 進階操作
44
45
Glimpse
http://mvc.tw
Glimpse
46
http://getglimpse.com/
http://mvc.tw
Glimpse
47
線上操作就知道有什麼功用
http://play.getglimpse.com/
http://mvc.tw
 視覺化的系統執行追蹤訊息
 顯示系統 Configuration 內容
 Route Debugging
 顯示 View Rander 的細節
 顯示 Http Request 的內容
 多種擴充的 Third Party Extensions
Glimpse
48
http://mvc.tw
 NuGet:
Glimpse Core
Glimpse ASP.NET
Glimpse Mvc5
Glimpse EF6
Glimpse
49
http://mvc.tw
 安裝之後,開啟使用
Glimpse
50
http://localhost/Glimpse.axd
http://mvc.tw
 觀察 EntityFramework 所執行的 SQL Command
Glimpse
51
http://mvc.tw
Glimpse
52
http://mvc.tw
Glimpse Extensions
53
http://getglimpse.com/Extensions/
http://mvc.tw
 分層架構、AJAX
 Glimpse.Performance
Glimpse – 進階操作
54
http://mvc.tw
 Glimpse 有支援 ASP.NET WebForms
Glimpse – ASP.NET WebForms
55
https://www.youtube.com/watch?v=vS6ONq6YwyI
http://mvc.tw
Glimpse – ASP.NET WebForms
56
57
Microsoft Monitoring Agent
http://mvc.tw
 Microsoft Monitoring Agent 會監視電腦基礎結構和應
用程式健全狀況。它會收集診斷資料,例如效能標準、事件
記錄檔和追蹤。Microsoft Monitoring Agent 可以做為
獨立工具使用,或是與 System Center Operations
Manager 搭配使用。
 下載位置
http://www.microsoft.com/zh-TW/download/details.aspx?id=40316
Microsoft Monitoring Agent (MMA)
58
http://mvc.tw
Microsoft Monitoring Agent (MMA)
59
http://mvc.tw
Microsoft Monitoring Agent (MMA)
60
61
Performance and Diagnostics
Hub (效能與分析中樞)
http://mvc.tw
效能與診斷
62
http://mvc.tw
效能與診斷
63
http://mvc.tw
效能與診斷
64
http://mvc.tw
效能與診斷
65
http://mvc.tw
效能與診斷
66
67
ANTS Performance/ANTS Memory
Profiler
http://mvc.tw
ANTS Performance Profiler
68
http://www.red-gate.com/products/dotnet-development/ants-performance-profiler/
http://mvc.tw
ANTS Memory Profiler
69
http://www.red-gate.com/products/dotnet-development/ants-memory-profiler/
http://mvc.tw
ANTS Performance/Memory Profiler
70
71
Telerik JustTrace
Performance/Memory Profiler
http://mvc.tw
Telerik JustTrace
72
http://www.telerik.com/products/memory-performance-profiler.aspx
http://mvc.tw
Telerik JustTrace Key Features
73
http://mvc.tw
Telerik JustTrace Profoiler
74
75
開發的效率
http://mvc.tw
 多螢幕,效率高!
開發的效率
76
http://mvc.tw
 換 SSD ,效率高!
開發的效率
77
http://mvc.tw
 善用你手邊的開發工具
 Visual Studio 號稱地表上最強的工具,要懂得如何使用
 熟悉 Visual Studio 快捷鍵
 安裝好用的 Visual Studio Extensions
開發的效率
78
http://mvc.tw
熟悉 Visua Studio 快捷鍵
79
http://visualstudioshortcuts.com/2013/
http://mvc.tw
Products and Extensions for Visual Studio
80
http://visualstudiogallery.msdn.microsoft.com/
推薦好套件 by demo
81
http://vs.demo.tc/
http://mvc.tw
Productivity Power Tools
http://visualstudiogallery.msdn.microsoft.com/d0d33361-18e2-
46c0-8ff2-4adea1e34fef/
VSCommands
http://vscommands.squaredinfinity.com/features
Web Essentials
http://vswebessentials.com/
這些套件你裝了沒?
82
http://mvc.tw
 ReAttach
 Indent Guides
 Javascript Parser
 Advanced Javascript outlining
 Jscript vsdoc Stub Generator 2012
 CodeMaid
 BuildVision
我還有哪些必裝的套件
83
http://mvc.tw
 Highlight all occurrences of selected words
 Image Optimizer
 jQuery Code Snippets
 GhostDoc
 Cobisi Routing Assistant
我還有哪些必裝的套件
84
http://mvc.tw
 ReSharper
http://www.jetbrains.com/resharper/
 OzCode
http://www.oz-code.com/
 .NET Reflector Visual Studio Extension
http://www.red-gate.com/products/dotnet-
development/reflector/
我還有哪些必裝的套件
85
http://mvc.tw
Bing Code Search for C#
86
http://goo.gl/OoXzsf
http://mvc.tw
 Alt + A
Bing Code Search for C#
87
http://mvc.tw
Web Search
88
http://goo.gl/199ByB
http://mvc.tw
Web Search
89
http://mvc.tw
Web Search
90
91
ReShaper
http://mvc.tw
JetBrain - ReSharper
92
http://www.jetbrains.com/resharper/
http://mvc.tw
JetBrain - ReSharper
93
94
行動網站-用來偵錯的瀏覽器
http://mvc.tw
 Ctrl + Shift + M
Firefox
95
http://mvc.tw
Chrome
96
http://mvc.tw
Mobilizer
97
http://mvc.tw
Electric Mobile Studio
98
http://www.electricplum.com/
http://mvc.tw
Electric Mobile Studio
99
http://mvc.tw
BrowserStack
100
http://www.browserstack.com
http://mvc.tw
BrowserStack
101
http://mvc.tw
BrowserStack
102
http://mvc.tw
BrowserStack - Chrome Extensions
103
104
Windows Phone Emulator
http://mvc.tw
Windows Phone 開發人員中心
105
https://dev.windowsphone.com/zh-tw
http://mvc.tw
Windos Phone 8.1 模擬器
106
https://dev.windowsphone.com/zh-tw/downloadsdk
http://mvc.tw
Windows Phone Emulator
107
http://mvc.tw
Windows Phone Emulator
108
http://mvc.tw
使用 Windows Phone Emulator 偵錯
109
110
modern.IE
http://mvc.tw
modern.IE
111
http://loc.modern.ie/zh-tw
http://mvc.tw
下載虛擬機器,測試各版本 IE 瀏覽器
112
http://mvc.tw
下載虛擬機器,測試各版本 IE 瀏覽器
113
http://mvc.tw
Modern.IE …… BrowserStack
114
115
http://mvc.tw
 Introducing Microsoft Monitoring Agent
 Performance Details in IntelliTrace
 IntelliTrace MVC Navigation
 UI Enhancements for IntelliTrace with Visual Studio
2013 Update 2
 使用 Microsoft Monitoring Agent 監視部署中的應用程式
 使用 Visual Studio 和 Microsoft Monitoring Agent 診斷
部署中的問題
Microsoft Monitoring Agent 相關連結
116
http://mvc.tw
 Performance and Diagnostics Hub in Visual
Studio 2013
 New CPU Usage tool in the Performance and
Diagnostics hub in Visual Studio 2013
 MSDN 使用程式碼剖析工具分析應用程式效能
 Visual Studio 2013的進階偵錯與效能分析技巧
Performance and Diagnostics Hub
117
http://mvc.tw
好活動需要支持
感謝 KKTIX 贊助 twMVC 活動報名平台
118
http://mvc.tw
好課程需要支持
119
http://skilltree.my
http://mvc.tw
好課程別放過 – ASP.NET MVC 5 實戰訓練營
120
http://skilltree.kktix.cc/events/skilltree2
謝謝各位
• 本投影片所包含的商標與文字皆屬原著作者所有。
• 本投影片使用的圖片皆從網路搜尋。
• 本著作係採用姓名標示-非商業性-相同方式分享 3.0 台灣授權。閱讀本授權條款,請到
http://creativecommons.org/licenses/by-nc-sa/3.0/tw/,或寫信至Creative Commons, 444 Castro
Street, Suite 900, Mountain View, California, 94041, USA.
h t t p : / / m v c . t w

Mais conteúdo relacionado

Mais procurados

twMVC#28 | visual studio 2017 新功能介紹
twMVC#28 | visual studio 2017 新功能介紹twMVC#28 | visual studio 2017 新功能介紹
twMVC#28 | visual studio 2017 新功能介紹twMVC
 
Asp.net mvc 從無到有 -twMVC#2
Asp.net mvc 從無到有 -twMVC#2Asp.net mvc 從無到有 -twMVC#2
Asp.net mvc 從無到有 -twMVC#2twMVC
 
twMVC#21 | 你所不知道的 Visual Studio
twMVC#21 | 你所不知道的 Visual StudiotwMVC#21 | 你所不知道的 Visual Studio
twMVC#21 | 你所不知道的 Visual StudiotwMVC
 
twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角
twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角
twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角twMVC
 
twMVC#22 | 一個微信專案從0到.000的效能調教之路
twMVC#22 | 一個微信專案從0到.000的效能調教之路twMVC#22 | 一個微信專案從0到.000的效能調教之路
twMVC#22 | 一個微信專案從0到.000的效能調教之路twMVC
 
twMVC#24 | 開發團隊的敏捷之路(未完成)
twMVC#24 | 開發團隊的敏捷之路(未完成)twMVC#24 | 開發團隊的敏捷之路(未完成)
twMVC#24 | 開發團隊的敏捷之路(未完成)twMVC
 
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史twMVC
 
動手打造 application framework-twMVC#15
動手打造 application framework-twMVC#15動手打造 application framework-twMVC#15
動手打造 application framework-twMVC#15twMVC
 
twMVC#29 -Learning Machine Learning with Movie Recommendation
twMVC#29 -Learning Machine Learning with Movie RecommendationtwMVC#29 -Learning Machine Learning with Movie Recommendation
twMVC#29 -Learning Machine Learning with Movie RecommendationMia Chang
 
如何在實務上使用TDD來開發 twmvc#12
如何在實務上使用TDD來開發 twmvc#12如何在實務上使用TDD來開發 twmvc#12
如何在實務上使用TDD來開發 twmvc#12twMVC
 
輕鬆上手ASP.NET Web API 2.1.2
輕鬆上手ASP.NET Web API 2.1.2輕鬆上手ASP.NET Web API 2.1.2
輕鬆上手ASP.NET Web API 2.1.2Bruce Chen
 
專案分層架構 twMVC#18
專案分層架構 twMVC#18專案分層架構 twMVC#18
專案分層架構 twMVC#18twMVC
 
twMVC#29 | 當.Net Core 遇到AWS Lambda
twMVC#29 | 當.Net Core 遇到AWS LambdatwMVC#29 | 當.Net Core 遇到AWS Lambda
twMVC#29 | 當.Net Core 遇到AWS LambdatwMVC
 
ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3
ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3
ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3twMVC
 
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路twMVC
 
twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸twMVC
 
twMVC#23 | 快速上手 Azure Functions
twMVC#23 | 快速上手 Azure FunctionstwMVC#23 | 快速上手 Azure Functions
twMVC#23 | 快速上手 Azure FunctionstwMVC
 
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3twMVC
 

Mais procurados (18)

twMVC#28 | visual studio 2017 新功能介紹
twMVC#28 | visual studio 2017 新功能介紹twMVC#28 | visual studio 2017 新功能介紹
twMVC#28 | visual studio 2017 新功能介紹
 
Asp.net mvc 從無到有 -twMVC#2
Asp.net mvc 從無到有 -twMVC#2Asp.net mvc 從無到有 -twMVC#2
Asp.net mvc 從無到有 -twMVC#2
 
twMVC#21 | 你所不知道的 Visual Studio
twMVC#21 | 你所不知道的 Visual StudiotwMVC#21 | 你所不知道的 Visual Studio
twMVC#21 | 你所不知道的 Visual Studio
 
twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角
twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角
twMVC#25 | ASP.NET MVC A/B Testing 的眉眉角角
 
twMVC#22 | 一個微信專案從0到.000的效能調教之路
twMVC#22 | 一個微信專案從0到.000的效能調教之路twMVC#22 | 一個微信專案從0到.000的效能調教之路
twMVC#22 | 一個微信專案從0到.000的效能調教之路
 
twMVC#24 | 開發團隊的敏捷之路(未完成)
twMVC#24 | 開發團隊的敏捷之路(未完成)twMVC#24 | 開發團隊的敏捷之路(未完成)
twMVC#24 | 開發團隊的敏捷之路(未完成)
 
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
 
動手打造 application framework-twMVC#15
動手打造 application framework-twMVC#15動手打造 application framework-twMVC#15
動手打造 application framework-twMVC#15
 
twMVC#29 -Learning Machine Learning with Movie Recommendation
twMVC#29 -Learning Machine Learning with Movie RecommendationtwMVC#29 -Learning Machine Learning with Movie Recommendation
twMVC#29 -Learning Machine Learning with Movie Recommendation
 
如何在實務上使用TDD來開發 twmvc#12
如何在實務上使用TDD來開發 twmvc#12如何在實務上使用TDD來開發 twmvc#12
如何在實務上使用TDD來開發 twmvc#12
 
輕鬆上手ASP.NET Web API 2.1.2
輕鬆上手ASP.NET Web API 2.1.2輕鬆上手ASP.NET Web API 2.1.2
輕鬆上手ASP.NET Web API 2.1.2
 
專案分層架構 twMVC#18
專案分層架構 twMVC#18專案分層架構 twMVC#18
專案分層架構 twMVC#18
 
twMVC#29 | 當.Net Core 遇到AWS Lambda
twMVC#29 | 當.Net Core 遇到AWS LambdatwMVC#29 | 當.Net Core 遇到AWS Lambda
twMVC#29 | 當.Net Core 遇到AWS Lambda
 
ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3
ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3
ASP.NET MVC 內建驗證擴充與活用技巧 -twMVC#3
 
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
 
twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸
 
twMVC#23 | 快速上手 Azure Functions
twMVC#23 | 快速上手 Azure FunctionstwMVC#23 | 快速上手 Azure Functions
twMVC#23 | 快速上手 Azure Functions
 
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
 

Semelhante a 開發的效能與效率-twMVC#15

twMVC#14 | 輕鬆上手ASP.NET Web API 2
twMVC#14 | 輕鬆上手ASP.NET Web API 2twMVC#14 | 輕鬆上手ASP.NET Web API 2
twMVC#14 | 輕鬆上手ASP.NET Web API 2twMVC
 
一個微信專案從0到000的效能調教
一個微信專案從0到000的效能調教一個微信專案從0到000的效能調教
一個微信專案從0到000的效能調教Bruce Chen
 
twMVC#33玩轉 Azure 彈性部署
twMVC#33玩轉 Azure 彈性部署twMVC#33玩轉 Azure 彈性部署
twMVC#33玩轉 Azure 彈性部署twMVC
 
twMVC#11 | 架構設計入門
twMVC#11 | 架構設計入門twMVC#11 | 架構設計入門
twMVC#11 | 架構設計入門twMVC
 
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程twMVC
 
Bruce-輕鬆上手Asp.net web api 2.1.2
Bruce-輕鬆上手Asp.net web api 2.1.2Bruce-輕鬆上手Asp.net web api 2.1.2
Bruce-輕鬆上手Asp.net web api 2.1.2Study4TW
 
twMVC#31網站上線了然後呢
twMVC#31網站上線了然後呢twMVC#31網站上線了然後呢
twMVC#31網站上線了然後呢twMVC
 
版本控制系统进阶
版本控制系统进阶版本控制系统进阶
版本控制系统进阶killmyday
 
Google雲端 第一章準備篇
Google雲端 第一章準備篇Google雲端 第一章準備篇
Google雲端 第一章準備篇gracebrainyu
 
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計Andrew Wu
 
架構設計入門 twMVC#11
架構設計入門 twMVC#11架構設計入門 twMVC#11
架構設計入門 twMVC#11twMVC
 
极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)Will Huang
 
與 Asp.net mvc 的第一次親密接觸 - twMVC#1
與 Asp.net mvc 的第一次親密接觸 - twMVC#1與 Asp.net mvc 的第一次親密接觸 - twMVC#1
與 Asp.net mvc 的第一次親密接觸 - twMVC#1twMVC
 
zhuwenlongChinese
zhuwenlongChinesezhuwenlongChinese
zhuwenlongChineseWenlong Zhu
 
twMVC#42 讓我們用一種方式來開發吧
twMVC#42 讓我們用一種方式來開發吧twMVC#42 讓我們用一種方式來開發吧
twMVC#42 讓我們用一種方式來開發吧twMVC
 
面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計Clark
 
Tech Net Taiwan Resources Intro
Tech Net Taiwan Resources IntroTech Net Taiwan Resources Intro
Tech Net Taiwan Resources IntroTimothy Chen
 
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練32015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3Duran Hsieh
 

Semelhante a 開發的效能與效率-twMVC#15 (20)

twMVC#14 | 輕鬆上手ASP.NET Web API 2
twMVC#14 | 輕鬆上手ASP.NET Web API 2twMVC#14 | 輕鬆上手ASP.NET Web API 2
twMVC#14 | 輕鬆上手ASP.NET Web API 2
 
一個微信專案從0到000的效能調教
一個微信專案從0到000的效能調教一個微信專案從0到000的效能調教
一個微信專案從0到000的效能調教
 
twMVC#33玩轉 Azure 彈性部署
twMVC#33玩轉 Azure 彈性部署twMVC#33玩轉 Azure 彈性部署
twMVC#33玩轉 Azure 彈性部署
 
twMVC#11 | 架構設計入門
twMVC#11 | 架構設計入門twMVC#11 | 架構設計入門
twMVC#11 | 架構設計入門
 
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
 
Bruce-輕鬆上手Asp.net web api 2.1.2
Bruce-輕鬆上手Asp.net web api 2.1.2Bruce-輕鬆上手Asp.net web api 2.1.2
Bruce-輕鬆上手Asp.net web api 2.1.2
 
twMVC#31網站上線了然後呢
twMVC#31網站上線了然後呢twMVC#31網站上線了然後呢
twMVC#31網站上線了然後呢
 
版本控制系统进阶
版本控制系统进阶版本控制系统进阶
版本控制系统进阶
 
Google雲端 第一章準備篇
Google雲端 第一章準備篇Google雲端 第一章準備篇
Google雲端 第一章準備篇
 
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
 
架構設計入門 twMVC#11
架構設計入門 twMVC#11架構設計入門 twMVC#11
架構設計入門 twMVC#11
 
极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)
 
與 Asp.net mvc 的第一次親密接觸 - twMVC#1
與 Asp.net mvc 的第一次親密接觸 - twMVC#1與 Asp.net mvc 的第一次親密接觸 - twMVC#1
與 Asp.net mvc 的第一次親密接觸 - twMVC#1
 
zhuwenlongChinese
zhuwenlongChinesezhuwenlongChinese
zhuwenlongChinese
 
twMVC#42 讓我們用一種方式來開發吧
twMVC#42 讓我們用一種方式來開發吧twMVC#42 讓我們用一種方式來開發吧
twMVC#42 讓我們用一種方式來開發吧
 
Asp.Net Mvc 1.0
Asp.Net Mvc 1.0Asp.Net Mvc 1.0
Asp.Net Mvc 1.0
 
面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計
 
Tech Net Taiwan Resources Intro
Tech Net Taiwan Resources IntroTech Net Taiwan Resources Intro
Tech Net Taiwan Resources Intro
 
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練32015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
 
Data Pipeline Matters
Data Pipeline MattersData Pipeline Matters
Data Pipeline Matters
 

Mais de twMVC

雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場
雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場
雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場twMVC
 
雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場
雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場
雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場twMVC
 
讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場
讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場
讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場twMVC
 
線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...
線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...
線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...twMVC
 
Azure mobileservice
Azure mobileservice Azure mobileservice
Azure mobileservice twMVC
 
SignalR實戰技巧 twmvc#17
SignalR實戰技巧 twmvc#17 SignalR實戰技巧 twmvc#17
SignalR實戰技巧 twmvc#17 twMVC
 
Angular js twmvc#17
Angular js twmvc#17Angular js twmvc#17
Angular js twmvc#17twMVC
 
TypeScript-twmvc#16
TypeScript-twmvc#16TypeScript-twmvc#16
TypeScript-twmvc#16twMVC
 
樞紐分析表之數據分析與統計-twMV#C14
樞紐分析表之數據分析與統計-twMV#C14樞紐分析表之數據分析與統計-twMV#C14
樞紐分析表之數據分析與統計-twMV#C14twMVC
 
RWD不是你想的那樣 tw mvc#13
RWD不是你想的那樣 tw mvc#13RWD不是你想的那樣 tw mvc#13
RWD不是你想的那樣 tw mvc#13twMVC
 
ASP.NET MVC Model 的設計與使用 twMVC#10
ASP.NET MVC Model 的設計與使用 twMVC#10ASP.NET MVC Model 的設計與使用 twMVC#10
ASP.NET MVC Model 的設計與使用 twMVC#10twMVC
 
Knockout 從零開始,實戰教學 twMVC#10
Knockout 從零開始,實戰教學 twMVC#10Knockout 從零開始,實戰教學 twMVC#10
Knockout 從零開始,實戰教學 twMVC#10twMVC
 
20130823微軟雲端平台開發者日
20130823微軟雲端平台開發者日20130823微軟雲端平台開發者日
20130823微軟雲端平台開發者日twMVC
 
NFC近場通訊-twMVC#9
NFC近場通訊-twMVC#9NFC近場通訊-twMVC#9
NFC近場通訊-twMVC#9twMVC
 
AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9twMVC
 
使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日
使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日
使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日twMVC
 
ASP.NET MVC Web API -twMVC#8
ASP.NET MVC Web API -twMVC#8ASP.NET MVC Web API -twMVC#8
ASP.NET MVC Web API -twMVC#8twMVC
 
超。光速 網站最佳化實戰 -twMVC#8
超。光速 網站最佳化實戰 -twMVC#8超。光速 網站最佳化實戰 -twMVC#8
超。光速 網站最佳化實戰 -twMVC#8twMVC
 
透過測試提升軟體品質 - twMVC#7
透過測試提升軟體品質 - twMVC#7透過測試提升軟體品質 - twMVC#7
透過測試提升軟體品質 - twMVC#7twMVC
 
Windows 市集應用程式 開發心得分享 -twMVC#6
Windows 市集應用程式 開發心得分享 -twMVC#6Windows 市集應用程式 開發心得分享 -twMVC#6
Windows 市集應用程式 開發心得分享 -twMVC#6twMVC
 

Mais de twMVC (20)

雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場
雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場
雲端上的資訊安全-Global Azure Bootcamp 2015 臺北場
 
雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場
雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場
雲端環境的快取策略-Global Azure Bootcamp 2015 臺北場
 
讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場
讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場
讓應用程式雲端化 由 Iaa s 邁向 paas 之路-Global Azure Bootcamp 2015 臺北場
 
線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...
線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...
線上遊戲利用 Dev ops 開源工具 chef, docker, vagrant 在microsoft azure 的佈署實踐-Global Azure...
 
Azure mobileservice
Azure mobileservice Azure mobileservice
Azure mobileservice
 
SignalR實戰技巧 twmvc#17
SignalR實戰技巧 twmvc#17 SignalR實戰技巧 twmvc#17
SignalR實戰技巧 twmvc#17
 
Angular js twmvc#17
Angular js twmvc#17Angular js twmvc#17
Angular js twmvc#17
 
TypeScript-twmvc#16
TypeScript-twmvc#16TypeScript-twmvc#16
TypeScript-twmvc#16
 
樞紐分析表之數據分析與統計-twMV#C14
樞紐分析表之數據分析與統計-twMV#C14樞紐分析表之數據分析與統計-twMV#C14
樞紐分析表之數據分析與統計-twMV#C14
 
RWD不是你想的那樣 tw mvc#13
RWD不是你想的那樣 tw mvc#13RWD不是你想的那樣 tw mvc#13
RWD不是你想的那樣 tw mvc#13
 
ASP.NET MVC Model 的設計與使用 twMVC#10
ASP.NET MVC Model 的設計與使用 twMVC#10ASP.NET MVC Model 的設計與使用 twMVC#10
ASP.NET MVC Model 的設計與使用 twMVC#10
 
Knockout 從零開始,實戰教學 twMVC#10
Knockout 從零開始,實戰教學 twMVC#10Knockout 從零開始,實戰教學 twMVC#10
Knockout 從零開始,實戰教學 twMVC#10
 
20130823微軟雲端平台開發者日
20130823微軟雲端平台開發者日20130823微軟雲端平台開發者日
20130823微軟雲端平台開發者日
 
NFC近場通訊-twMVC#9
NFC近場通訊-twMVC#9NFC近場通訊-twMVC#9
NFC近場通訊-twMVC#9
 
AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9
 
使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日
使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日
使用 ASP.NET MVC 開發SPA網站-微軟實戰課程日
 
ASP.NET MVC Web API -twMVC#8
ASP.NET MVC Web API -twMVC#8ASP.NET MVC Web API -twMVC#8
ASP.NET MVC Web API -twMVC#8
 
超。光速 網站最佳化實戰 -twMVC#8
超。光速 網站最佳化實戰 -twMVC#8超。光速 網站最佳化實戰 -twMVC#8
超。光速 網站最佳化實戰 -twMVC#8
 
透過測試提升軟體品質 - twMVC#7
透過測試提升軟體品質 - twMVC#7透過測試提升軟體品質 - twMVC#7
透過測試提升軟體品質 - twMVC#7
 
Windows 市集應用程式 開發心得分享 -twMVC#6
Windows 市集應用程式 開發心得分享 -twMVC#6Windows 市集應用程式 開發心得分享 -twMVC#6
Windows 市集應用程式 開發心得分享 -twMVC#6
 

開發的效能與效率-twMVC#15