http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2012-10-29 14:33:19
Redis Research(2)- C10K问题的解决 C10K问题的解决 C10K是每个写服务器端的人都会遇到的难题,就是如何使单机支持10K并发连接,并使得每个连接的反应时间都是在合理的范围内。这里有一份测评报告,可以看出Redis可以支持到64k的并发(需要修改源文件重新编译)。x轴是并发连接数,y轴是每秒能处理.........【阅读全文】
发布时间:2012-08-28 17:46:02
http://www.ibm.com/developerworks/cn/websphere/library/techarticles/0804_wangyuming/index.htmlhttp://blog.chinaunix.net/u1/43664/showart_346282.html 线程创建1.1 线程与进程相对进程而言,线程是一个更加接近于执行体的概念,它可以与同进程中的其他线程共享数据,但拥.........【阅读全文】
发布时间:2011-12-20 21:39:13
文件share_proc.c #include <stdio.h>#include <stdlib.h>#include <sys/types.h>#include <sys/shm.h>#include <string.h>#include <unistd.h>#include <sys/wait.h> struct A{ int x; &nb.........【阅读全文】