欢迎访问我的独立博客
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 67 下一页
摘要: svn: command not found yum install -y subversion 以下是一些常用命令的使用方法,希望对大家有所帮助。 1,check out(co)签出代码 svn co path svn co path 签出特定版本 签到本地指定目录下 2,添加文件并提交 先往版本 阅读全文
posted @ 2017-06-06 13:50 github.com/starRTC 阅读(559) 评论(0) 推荐(0) 编辑
摘要: ab 无疑是目前最常见的压力测试工具。其典型用法如下: shell> ab -k -c 100 -t 10 http://domain/path 其中,参数「c」表示的是并发, 参数「t」表示的是整个测试持续的时间。 一个很容易被忽视的参数是「k」,它会增加请求头 Connection: Keep- 阅读全文
posted @ 2017-06-02 18:42 github.com/starRTC 阅读(3208) 评论(0) 推荐(0) 编辑
摘要: InnoDB配置 从MySQL 5.5版本开始,InnoDB就是默认的存储引擎并且它比任何其它存储引擎的使用要多得多。那也是为什么它需要小心配置的原因。 innodb_file_per_table 表的数据和索引存放在共享表空间里或者单独表空间里。我们的工作场景安装是默认设置了innodb_file 阅读全文
posted @ 2017-06-02 17:32 github.com/starRTC 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 最终选择了蚂蚁大宝卡 36元:开通6月后有2G+500M全国流量,100+50分钟全国通话。 百度出了神卡: http://map.baidu.com/zt/y2015/pc/?url=http%3A%2F%2Fmap.baidu.com%2Fzt%2Fclient%2Fliantongshenka 阅读全文
posted @ 2017-06-02 17:25 github.com/starRTC 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 配置选项 MySQL 函数的行为受到 php.ini 中设置的影响。 mysql.allow_persistent "1" 是否允许 MySQL 的持久连接。mysql.max_persistent "-1" 每个进程中最大的持久连接数目。mysql.max_links "-1" 每个进程中最大的连 阅读全文
posted @ 2017-05-31 15:56 github.com/starRTC 阅读(244) 评论(0) 推荐(0) 编辑
摘要: C-style JNI looks like (*env)->SomeJNICall(env, param1 ...) C++ style JNI looks like env->SomeJNICall(param1 ...) C代码: (*env)->GetStringUTFChars(env, 阅读全文
posted @ 2017-05-27 17:46 github.com/starRTC 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 命令centos6centos7 ifconfig有有 yum install -y net-tools 服务管理chkconfig /etc/init.d/服务systemctl systemctl start service_name 自启动 [CentOS6] $ chkconfig serv 阅读全文
posted @ 2017-05-23 17:10 github.com/starRTC 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 用途:链接文件 默认情况下,ln命令产生硬链接。 最常用的参数是-s(建立符号连接Symbolic Link,也叫软连接),具体用法是: ln-s 源文件 目标文件 ln-s 源文件 目标文件 当我们需要在不同的目录用到相同的文件时,我们不需要在每一个目录下都放一个相同的文件,我们只需要在某个固定的 阅读全文
posted @ 2017-05-22 18:44 github.com/starRTC 阅读(1573) 评论(0) 推荐(0) 编辑
摘要: 现在要调用一个第3方库libwebrtc_audio_preprocessing.so 最终布局如下: 即创建2个文件夹,将第3方库放进去。 include目录放第3方库的头文件 其中lib目录如下: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS 阅读全文
posted @ 2017-05-22 18:42 github.com/starRTC 阅读(815) 评论(0) 推荐(0) 编辑
摘要: sudo yum update sudo yum groupinstall "Development tools" sudo yum groupinstall "Additional Development" wget https://archive.apache.org/dist/subversi 阅读全文
posted @ 2017-05-22 18:42 github.com/starRTC 阅读(286) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 67 下一页