上一页 1 2 3 4 5 6 7 8 ··· 33 下一页

2018年6月4日

elasticsearch关键词查询不分词

摘要: $query = [ 'bool' => [ 'must' => [ 'match_phrase' => ['content' => $word] //$word词不被分词 ], 'must_not' => [ 'terms' => ['fid'=>[69, 70]], //添加not in ... 阅读全文

posted @ 2018-06-04 20:26 dongruiha 阅读(2044) 评论(0) 推荐(0) 编辑

2018年4月12日

centos配置/etc/mail.rc发邮件

摘要: 安装mailx: yum install mailx vi /etc/mail.rc set from=524755798@qq.comset smtp="smtps://smtp.qq.com:465"set smtp-auth-user=524755798set smtp-auth-passwo 阅读全文

posted @ 2018-04-12 12:49 dongruiha 阅读(5715) 评论(0) 推荐(0) 编辑

CentOS7 配置sendmial + PHP mail函数发送邮件

摘要: https://blog.csdn.net/jiabangok/article/details/51840556 阅读全文

posted @ 2018-04-12 10:02 dongruiha 阅读(326) 评论(0) 推荐(0) 编辑

2018年4月11日

如何使用Xshell秘钥认证登录CentOS(无密码登录)

摘要: https://www.linuxidc.com/Linux/2016-06/132268.htm 阅读全文

posted @ 2018-04-11 09:46 dongruiha 阅读(175) 评论(0) 推荐(0) 编辑

再说TCP神奇的40ms

摘要: https://www.cnblogs.com/purpleraintear/p/6051475.html 阅读全文

posted @ 2018-04-11 09:18 dongruiha 阅读(179) 评论(0) 推荐(0) 编辑

2018年4月3日

curl命令测试网络请求中DNS解析、响应时间

摘要: https://blog.csdn.net/dreamer2020/article/details/78152576 阅读全文

posted @ 2018-04-03 20:17 dongruiha 阅读(2029) 评论(0) 推荐(0) 编辑

curl实现put请求

摘要: <?php function curlrequest($url,$data,$method='post'){ $ch = curl_init(); //初始化CURL句柄 curl_setopt($ch, CURLOPT_URL, $url); //设置请求的URL curl_setopt($ch, 阅读全文

posted @ 2018-04-03 11:37 dongruiha 阅读(8554) 评论(1) 推荐(0) 编辑

2018年3月28日

lumen伪静态路由设置示例

摘要: lumen路由文件中的配置: $app->get('info-{tid}.html', 'ThreadController@palmInfo'); 控制器中代码示例: public function palmInfo($tid) { try { var_dump($tid); exit('hi'); } catch (\Exception ... 阅读全文

posted @ 2018-03-28 17:47 dongruiha 阅读(424) 评论(0) 推荐(0) 编辑

nginx client_body_buffer_size

摘要: http://www.bubuko.com/infodetail-1760832.html 上传文件过大时,nginx会报链接里面的warn,请求body写磁盘到缓存文件,导致性能降低,可适当调大该参数,以提高上传性能。 阅读全文

posted @ 2018-03-28 16:02 dongruiha 阅读(1203) 评论(0) 推荐(0) 编辑

nginx模块开发

摘要: http://cjhust.blog.163.com/blog/static/17582715720134721544759/ 阅读全文

posted @ 2018-03-28 15:20 dongruiha 阅读(111) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 33 下一页

导航