一个愤青
发布时间:2015-03-18 21:55:24
1. WebbenchWebbench是一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。Webbench使用C语言编写, 代码实在太简洁,源码加起来不到600行。下载链接:http://home.tiscali.cz/~cz210552/w.........【阅读全文】
发布时间:2015-03-18 10:28:39
*/1 * * * * export DISPLAY=:0 && xterm......【阅读全文】
发布时间:2015-03-18 09:20:55
#include <stdio.h>typedef struct persion { const char *name; int age;} persion[1], persion_t;int main(void){ struct persion a; struct persion *p = NULL; struct persion *q = NULL; .........【阅读全文】
发布时间:2015-03-17 21:39:39
#include typedef struct _stu { const char *name; int number;} stu;#define func(...) my_func((struct _stu){__VA_ARGS__})void my_func(struct _stu ms){ printf("%s: %d\n", ms.name.........【阅读全文】
发布时间:2015-03-17 16:23:51
转载请注明:http://blog.csdn.net/ict2014/article/details/17394259SkipList在leveldb以及lucence中都广为使用,是比较高效的数据结构。由于它的代码以及原理实现的简单性,更为人们所接受。我们首先看看SkipList的定义,为什么叫跳跃表?“ Skip lists are data structures that u.........【阅读全文】