这两天弄个PHP调用 SVN 同步 update 多台服务器更新的程序,为了避免 commit 的时候不会被堵塞卡半天得想个办法只请求触发,而不需要等待程序 update 完成返回结果这样耗时太长,所以研究过了下如何让PHP主动断开连接的方法。搞了一下午,发现很多问题,还好最终还是弄出来了,主要是 Nginx 太坑。。废话不多说,下面上代码:...
分类:
Web程序 时间:
2015-07-15 06:59:02
阅读次数:
167
*******INSTRUCTION FOR GETING RECORDS FROM JIRA by cURL*****************Jira supply RESTfull API, so we can use cURL to get data. Below is the steps,1...
分类:
数据库 时间:
2015-07-14 20:19:41
阅读次数:
172
This turtorial describes how to use Qt Creator to create a small Qt application, Text Finder. It is a simplified version of the Qt UI Tools Text Finde...
分类:
移动开发 时间:
2015-07-14 20:10:15
阅读次数:
267
Theqhulllibrary has a centralpoint with a few samples to startfrom when you want to use it in your code. Most interestingly, the developers invite you...
分类:
其他好文 时间:
2015-07-14 20:09:32
阅读次数:
202
数据库操作查看所有的数据库
hive> show databases ;
使用数据库default
hive> use default;
查看数据库信息
hive > describe database default;
OK
db_name comment location owner_name owner_type parameters...
分类:
数据库 时间:
2015-07-14 17:55:48
阅读次数:
182
Dom4j is an easy to use, open source library for working with XML, XPath and XSLT on the Java platform using the Java Collections Framework and with f...
分类:
其他好文 时间:
2015-07-14 17:22:55
阅读次数:
104
轻量级的HTML模板报表方法,已在自己的项目中使用,虽然功能还比较简单,但屡试不爽,欢迎使用,并提供宝贵意见!...
分类:
Web程序 时间:
2015-07-14 15:38:54
阅读次数:
147
1. 忘记root密码编辑mysql主配置文件 my.cnf 在[mysqld]字段下添加参数skip-grant,重启数据库服务,这样就可以进入数据库不用授权了 mysql -uroot ,修改相应用户密码 use mysql; update user set password=password(...
分类:
数据库 时间:
2015-07-14 15:13:12
阅读次数:
175
一、下载tomcat8 http://tomcat.apache.org/download-80.cgi 二、安装 下载完成后,可以放在任意目录下面,我放在:/Users/Shared/tomcat目录下三、启动 为了方便启动,你可以将tomcat添加到path路径中export PATH=/Use...
分类:
系统相关 时间:
2015-07-14 14:58:09
阅读次数:
157
php mysql数据库常用cmd命令集 show databases; 显示数据库 create database name; 创建数据库 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 d...
分类:
数据库 时间:
2015-07-14 13:22:40
阅读次数:
130