发布时间:2013-04-22 16:30:14
以下为nginx基本配置中nginx.conf中增加或调整的参数,经测试 10000并发连接,10秒的页面请求时间,调整后的配置比调整前配置性能(每秒页面请求数)提高12%#2*CPU核数worker_processes 8;#使用tcmalloc作为每个worker内存池的申请和释放google_perftools_profiles /tmp/tcmalloc;#每个worker文件描述符(FD.........【阅读全文】
发布时间:2013-04-22 16:01:18
无预连接<?phpfunction db_con_basic(){ $dsn = 'mysql:dbname=test;host=127.0.0.1'; $user = 'test'; $pwd = 'test';  .........【阅读全文】
发布时间:2013-04-22 15:54:41
httpd cpu 100%解决:lsof -p cpu高的httpd进程的pid,查看cwd(current working directory), more /dev/shm/session_.. 查看当前问题httpd的php变量 strace -p pid -c 查看system call和user call的比例,如果system call的比例很.........【阅读全文】