摘要: 一:apache 中的 ab格式: ./ab [options] [http://]hostname[:port]/path参数: -n requests Number of requests to perform//在测试会话中所执行的请求个数。默认时,仅执行一个请求 -c concurrency Number of multiple requests to make//一次产生的请求个数。默认是一次一个。 -t timelimit Seconds to max. wait for responses//测试所进行的最大秒数。其内部隐含值是-n 50000。它可以使对服务器的测试限制在一个固 阅读全文
posted @ 2014-02-27 14:35 一束光 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 鸟哥的Linux私房菜 基础学习篇(第三版) http://book.51cto.com/art/201007/211888.htm鸟哥的Linux私房菜——服务器架设篇 http://book.51cto.com/art/200712/61597.htm 阅读全文
posted @ 2014-02-27 14:16 一束光 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 在git提交环节,存在三大部分:working tree, index file, commit这三大部分中:working tree:就是你所工作在的目录,每当你在代码中进行了修改,workingtree的状态就改变了。index file:是索引文件,它是连接workingtree和commit的桥梁,每当我们使用git-add命令来登记后,index file的内容就改变了,此时indexfile就和working tree同步了。commit:是最后的阶段,只有commit了,我们的代码才真正进入了git仓库。我们使用git-commit就是将indexfile里的内容提交到commi 阅读全文
posted @ 2014-02-27 11:12 一束光 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.tech126.com/git-fetch-pull/Git中从远程的分支获取最新的版本到本地有这样2个命令:1. git fetch:相当于是从远程获取最新版本到本地,不会自动merge git fetch origin master git log -p master..origin/master git merge origin/master 以上命令的含义: 首先从远程的origin的master主分支下载最新的版本到origin/master分支上 然后比较本地的master分支和origin/master分支的差别 最后进行合并 ... 阅读全文
posted @ 2014-02-27 10:49 一束光 阅读(207) 评论(0) 推荐(0) 编辑

友情链接

CFC4N