首先安装CentOS6.0就不用说了。安装即可。唯一需要注意的就是后面Oracle 11G Installation guide中的Checking the Software Requirements部分,会要求安装一部分软件这些软件在CentOS6 DVD镜像里都有。可以自己配置个DVD镜像的re...
分类:
数据库 时间:
2015-04-11 13:05:26
阅读次数:
202
Kibana4需要Elasticsearch1.4.4以后版本参考文档:http://www.elastic.co/guide/en/kibana/current/index.html
分类:
其他好文 时间:
2015-04-10 20:22:26
阅读次数:
837
原文地址:http://nick-lab.gs.washington.edu/java/jdk1.5b/guide/jmx/tutorial/connectors.htmlBasic Example of JMX TechnologyThis chapter introduces the conce...
分类:
其他好文 时间:
2015-04-10 19:56:35
阅读次数:
194
Google C++ 编程风格手册里面提到了许多编程时需要注意到的问题,对规范代码还是有帮助的。这里是一些阅读时的笔记,也算是归纳的一些要点。
- Google C++ Style Guide 阅读笔记 1
- Google C++ Style Guide 阅读笔记 2
- Google C++ Style Guide 阅读笔记 3
- Google C++ Style Guide 阅读笔记...
分类:
编程语言 时间:
2015-04-10 11:37:06
阅读次数:
154
http://docs.phonegap.com/en/edge/guide_platforms_ios_index.md.html#iOS%20Platform%20Guide
分类:
其他好文 时间:
2015-04-10 10:50:47
阅读次数:
98
类构造函数中的工作
通常,构造函数中只对成员变量设置初值,复杂的初始化请使用Init().
信号错误难以处理,禁止使用exceptions.
如果初始化失败,那对象就创建失败了,造成未知状态。
如果在构造函数中调用虚函数,这些调用不能传给子函数的实现。即使现在没有子函数,但对以后的优化造成隐患。
如果其中调用了全局变量,构造将在main()之前进行,可能导致构造函数中的隐式假设失败,比如全局变量初...
分类:
编程语言 时间:
2015-04-08 21:35:50
阅读次数:
204
inner_hits文档:http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-inner-hits.html#parent-child-inner-hits
(ElasticSearch 1.50+ 可用)
在使用搜索“has-child”搜索父文档时,一般情况只...
分类:
其他好文 时间:
2015-04-08 13:09:53
阅读次数:
2298
Welcome to the iceScrum iceScrum install guide. If you don’t want to manage your own iceScrum installation, you may want to consider our Cloud offers ...
分类:
其他好文 时间:
2015-04-08 12:53:17
阅读次数:
277
1. 循序渐进Oracle 数据库管理、优化与备份恢复 12章 从Statspack To ADDM 13章故障诊断及分析方法2. Oracle核心技术3. Oracle优化日记:一个金牌DBA的故事.白鳝4. Oracle® Database Performance Tuning Guide 11...
分类:
其他好文 时间:
2015-04-07 19:09:47
阅读次数:
126
命名空间应包裹include, 全局定义、声明和其他命名空间的前置声明之后的一切代码:
// in the .h file
namespace mynamespace{
// All declarations are within the namespace scope...
分类:
编程语言 时间:
2015-04-07 15:38:15
阅读次数:
180