IntroductionHi, I’m Glenn Fiedler and welcome to the fourth article in my seriesNetworking for Game ProgrammersIn theprevious article, we added our ow...
分类:
其他好文 时间:
2015-02-23 18:58:58
阅读次数:
174
Eva loves to collect coins from all over the universe, including some other planets like Mars. One day she visited a universal shopping mall which cou...
分类:
其他好文 时间:
2015-02-22 17:16:11
阅读次数:
154
记录下备忘。场景:要把TCP拆成一个个HTTP请求,通过Proxy1、HTTP Client上载数据到CCProxy ,然后再到Web服务器的时候。 如果数据量比较小,例如10个字节,Proxy就会等着到一定的数据才向Web服务器发送。也可能不同的代理服务器实现会有不同。那么就没办法重用这个Uplo...
分类:
Web程序 时间:
2015-02-22 13:22:22
阅读次数:
202
Named 'Bulls Over Broadway' and 'Gym Red', the most recent variation from the New Jordans 2015 is formally revealed, because this remastered classic p...
分类:
其他好文 时间:
2015-02-20 23:11:03
阅读次数:
322
--查看最耗磁盘读写率的磁盘语句select*from(selectv.sql_id,v.child_number,v.sql_text,v.elapsed_time,v.cpu_time,v.disk_reads,rank()over(orderbyv.disk_readsdesc)elapsed_rankfromv$sqlv)awhereelapsed_rank<=10;--查看产生表锁的语句,可以的到SID号select*fromv$loc..
分类:
数据库 时间:
2015-02-20 00:20:03
阅读次数:
273
--查看最耗磁盘读写率的磁盘语句select*from(selectv.sql_id,v.child_number,v.sql_text,v.elapsed_time,v.cpu_time,v.disk_reads,rank()over(orderbyv.disk_readsdesc)elapsed_rankfromv$sqlv)awhereelapsed_rank<=10;--查看产生表锁的语句,可以的到SID号select*fromv$loc..
分类:
数据库 时间:
2015-02-20 00:17:52
阅读次数:
183
[背景知识]? MTU:?Maxitum?Transmission?Unit?最大传输单元? MSS:?Maxitum?Segment?Size?最大分段大小(偶是直译,翻译的不好,不要打? 俺PP)? PPPoE:?PPP?Over?Ethernet(在以太网上承载PPP协议...
分类:
其他好文 时间:
2015-02-16 01:42:38
阅读次数:
226
AnchoredFloatViewFloat View over TableView to indicate selected row directionFloat View 可以用来指示 TableView 中被选择的cell.This is a Float View to indicate th...
分类:
其他好文 时间:
2015-02-15 21:46:15
阅读次数:
189
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.
Calling next() will return the next smallest number in the BST.
Note...
分类:
其他好文 时间:
2015-02-15 18:12:12
阅读次数:
175
代码示例:WITH domain AS(SELECT ROW_NUMBER() OVER(ORDER BY ID DESC) ids,* FROM dbo.DomainInfo)SELECT * FROM domain WHERE ids BETWEEN 1 AND 20 ORDER BY City...
分类:
数据库 时间:
2015-02-15 15:03:32
阅读次数:
204