上一页 1 2 3 4 5 6 ··· 9 下一页

2018年11月22日

【转载】Configure the max limit for concurrent TCP connections

摘要: 转载地址:http://smallvoid.com/article/winnt-tcpip-max-limit.html To keep the TCP/IP stack from taking all resources on the computer, there are different p 阅读全文

posted @ 2018-11-22 10:41 wyman25 阅读(1399) 评论(0) 推荐(1) 编辑

2018年11月20日

Constructor in depth

摘要: There are two types of constructor:Instance Constructor and Type Constructor(or so-called Static Constructor). Instance Constructor When use the new k 阅读全文

posted @ 2018-11-20 22:01 wyman25 阅读(194) 评论(0) 推荐(0) 编辑

使用PerfView监测.NET程序性能(一):Event Trace for Windows

摘要: Event Trace for Windows ETW 阅读全文

posted @ 2018-11-20 21:50 wyman25 阅读(3037) 评论(0) 推荐(5) 编辑

2018年11月8日

性能与优化的文章

摘要: Improving Your App’s Performance with PerfView Tools For Performance Analyzing WPA/WPR 微软WINDOS PERFORMANCE跟踪分析工具包 Windows Sysinternals——system utilit 阅读全文

posted @ 2018-11-08 16:23 wyman25 阅读(256) 评论(0) 推荐(0) 编辑

2018年9月29日

Event Tracing For Windows

摘要: https://blogs.msdn.microsoft.com/oanapl/2009/08/04/etw-event-tracing-for-windows-what-it-is-and-useful-tools/ https://www.codeproject.com/articles/570 阅读全文

posted @ 2018-09-29 15:42 wyman25 阅读(493) 评论(1) 推荐(1) 编辑

2018年8月22日

MISL Learning

摘要: https://www.codeguru.com/csharp/.net/net_general/il/article.php/c4635/MSIL-Tutorial.htm http://etutorials.org/Programming/programming+microsoft+visual 阅读全文

posted @ 2018-08-22 17:42 wyman25 阅读(189) 评论(0) 推荐(0) 编辑

2017年5月2日

Thread in depth 4:Synchronous primitives

摘要: There are some synchronization primitives in .NET used to achieve thread synchronization Monitor c# provides System.Threading.Monitor class which coop 阅读全文

posted @ 2017-05-02 15:50 wyman25 阅读(348) 评论(0) 推荐(0) 编辑

2017年4月28日

Thread in depth 3:Synchronization

摘要: Synchronization means multi threads access the same resource (data, variable ,etc) should not cause a corruption to it.If all methods of a class promi 阅读全文

posted @ 2017-04-28 09:39 wyman25 阅读(316) 评论(0) 推荐(0) 编辑

2017年4月27日

Thread in depth 2:Asynchronization and Task

摘要: When we want to do a work asynchronously, creating a new thread is a good way. .NET provides two others ways rather than create thread explicitly, tha 阅读全文

posted @ 2017-04-27 16:10 wyman25 阅读(173) 评论(0) 推荐(0) 编辑

2017年4月19日

SQL Server 死锁概念和分析

摘要: 锁的概念 锁是什么 锁是数据库中在并发操作情形下保护资源的机制。通常(具体要看锁兼容性)只有锁的拥有者才能对被锁的资源进行操作,从而保证数据一致性。 锁的概念可分为几部分 1.锁的资源 2.锁的模式 3.锁在事务中的持续时间 不同的事务隔离级别下,锁有不同的持续时间。 (单一个SQL语句也是一个事物 阅读全文

posted @ 2017-04-19 11:20 wyman25 阅读(2557) 评论(1) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 9 下一页

导航