- 论坛徽章:
- 0
|
我使用了ttserver来做点击率统计.由于点击率非常大.导致服务器time_wait也很高..
[oopp@web-* ~]# netstat -n |grep TIME_WAIT |awk '/^tcp/ {print $5 }' |awk -F : ' {++S[$1]} END {for(a in S) print a, S[a]}' |sort -k 2rn |head -n 10
192.*.*.74 35779
127.0.0.1 3251
192.*.*.* 3140
192.*.*.* 584
192.*.*.* 450
192.*.*.* 322
192.*.*.* 294
主要是192.*.*.74 用于点击率统计的.
内核参数我已经修改过
但是效果还是不明显.不知道大虾有办法解决么
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_fin_timeout = 15
net.ipv4.tcp_keepalive_time = 300
net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait = 30
net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait = 15
net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait = 30
php 连接memcahced 不可以使用udp方式么我写了一个测试脚本
<?
error_reporting(E_ALL);
ini_set("display_errors", 1);
$tt = new Memcache();
$tt->connect( 'udp://192.168.1.33', 11212 );
$tt->set('test', 'PHP connet to memcahed');
echo $tt->get('test');
$tt->close();
?>
请大侠们帮忙看看... |
|