- 授权协议: MIT
- 开发语言: Ruby
- 操作系统: 跨平台
- 软件首页: https://github.com/integrity/integrity
- 软件文档: http://integrity.github.io/
软件介绍
Integrity 是 Ruby 开发的持续集成服务器。
要求:
-
Ruby >= 1.8.7 (1.8.7, 1.9.2, 1.9.3 and 2.0.0 should work)
-
RubyGems >= 1.3.5
-
git >= 1.6
安装依赖:
$ gem install bundler $ git clone git://github.com/integrity/integrity $ cd integrity $ git checkout -b deploy v26 $ bundle install $ bundle exec rake db
配置:
Integrity.configure do |c| c.database = "sqlite3:integrity.db" c.directory = "builds" c.base_url = "http://ci.example.org" c.log = "integrity.log" c.builder = :threaded, 5 c.build_all = true c.project_default_build_count = 10 end
高性能Python
(美)戈雷利克、(英)欧日沃尔德 / 东南大学出版社 / 2015-2
你的Python代码也许运行正确,但是你需要运行得更快速。通过探讨隐藏在设计备选方案中的基础理论,戈雷利克和欧日沃尔德编著的《高性能Python》将帮助你更深入地理解Python的实现。你将了解如何定位性能瓶颈,从而显著提升高数据流量程序中的代码执行效率。 你该如何利用多核架构和集群?或者你该如何搭建一个可以自由伸缩而不会影响可靠性的系统?有经验的Python程序员将会学习到这类问题的具体解......一起来看看 《高性能Python》 这本书的介绍吧!
