摘要:
Table of Contents 1. 下载thrift源代码 2. 编译并安装 3. 运行测试程序 4. 安装 1 下载thrift源代码 git clone https://git-wip-us.apache.org/repos/asf/thrift.git thrift git checko 阅读全文
posted @ 2016-07-11 23:56
jinchunguang
阅读(1346)
评论(0)
推荐(0)
摘要:
Thrift是Apache的一个开源的跨语言服务开发框架,它提供了一个代码生成引擎来构建服务,支持C++,Java,Python,PHP,Ruby,Erlang,Perl,Haskell,C#,Cocoa,JavaScript,Node.js,Smalltalk,OCaml,Delphi等多种编程语 阅读全文
posted @ 2016-07-11 23:35
jinchunguang
阅读(939)
评论(0)
推荐(0)
摘要:
1、error: Bison version 2.5 or higher must be installed on the system! 哈哈,Bison版本低了吧,用下面的命令 wget http://ftp.gnu.org/gnu/bison/bison-2.5.tar.gz tar -zxv 阅读全文
posted @ 2016-07-11 23:34
jinchunguang
阅读(441)
评论(0)
推荐(0)
摘要:
本文译自 Matt Stauffer 的 系列文章 . 本文中涉及的新功能都是关于 Commands 的,这些特性在 Laravel 旧版本中已经有了,但是在 Laravel 5.0 中变得更加好用了。 I’ll be using examples in this blog post from a 阅读全文
posted @ 2016-07-11 14:13
jinchunguang
阅读(1142)
评论(0)
推荐(0)
摘要:
Laravel有内置命令调度器,可以方便的实现Cron. 任务调度定义在app/Console/Kernel.php文件的schedule方法中,该方法已经包含了一个示例.Laravel里有两种方法执行Cron,第一种方法是让Cron每分钟调用Laravel命令调度,然后让Laravel来根据具体的 阅读全文
posted @ 2016-07-11 14:12
jinchunguang
阅读(6667)
评论(0)
推荐(0)
摘要:
查看、添加、提交、删除、找回,重置修改文件 git help <command> # 显示command的help git show # 显示某次提交的内容 git show $id git co -- <file> # 抛弃工作区修改 git co . # 抛弃工作区修改 git add <fil 阅读全文
posted @ 2016-07-11 12:13
jinchunguang
阅读(163)
评论(0)
推荐(0)