搬运自:http://wurang.me/2014/04/24/dotnet-IPC.html如果有一个需求,用一个程序控制另一个程序,最简单的,比如用程序A打开程序B,这个想必平时都会用到,可以使用Process类及相关的方法。那么再打开B的时候发送一些参数,然后B根据这些参数做出一些反映,这该怎...
分类:
Web程序 时间:
2014-04-30 04:10:20
阅读次数:
617
MySQL
server为每一个connection建立一个thread为其服务,虽然thread create比着fork
process代价高,单高并发的情况下,也不可忽略。 所以增加了Thread cache,重载了exit方式,cache
Thread到一个队列中,当有新的THD请求时,从....
分类:
数据库 时间:
2014-04-28 08:54:55
阅读次数:
1598
栈耗尽,递归会导致该问题。****** B A T C H R E C U R S I O N
exceeds STACK limits ******Recursion Count=1240, Stack Usage=90 percent****** B
A T C H PROCESS...
分类:
其他好文 时间:
2014-04-28 05:04:48
阅读次数:
409
【一些编程语录】1、If debugging is the process of
removing software bugs, then programming must be the process of putting them
in.– Edsger Dijkstra 如果调试程序是移除臭....
分类:
其他好文 时间:
2014-04-27 22:56:14
阅读次数:
543
2014-04-27
19:09题目:线程和进程有什么区别?解法:理论题,操作系统教材上应该有很详细的解释。我回忆了一下,写了如下几点。代码: 1 // 16.1 What is
the difference between process and thread? 2 Answer: 3 P...
分类:
编程语言 时间:
2014-04-27 21:53:11
阅读次数:
668