01 2020 档案

摘要:连接数出现瓶颈,总是在4k左右。 1.查看系统最大进程数ulimit -a。查看相关进程的limits /proc/xxxxid/limits 2.nginx worker_connections 默认是1024.每个worker最大1024个连接。调整足够大。我设置为15000,4个worker, 阅读全文
posted @ 2020-01-16 09:56 zipon 阅读(413) 评论(0) 推荐(0)
摘要:如果之前改错了,找到,删除就行了。 阅读全文
posted @ 2020-01-08 18:03 zipon 阅读(3631) 评论(0) 推荐(0)
摘要:<html> <head> <title>邮件标题</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta name="description" content="alert results 阅读全文
posted @ 2020-01-08 11:07 zipon 阅读(364) 评论(0) 推荐(0)
摘要:$('form table tbody').children()[2].after(deadlineTr)页面直接展示html源码。说明after会不生效正确方法:不使用childNode $('form table tbody tr').eq(2).after(deadlineTr); 阅读全文
posted @ 2020-01-02 15:26 zipon 阅读(242) 评论(0) 推荐(0)