[注意],当前的测试环境仅仅是一台服务器.部署测试的tungten版本是2.1.2-xxxx;Requirements:mysql配置To change the Tungsten user to use the new password format complete the following s...
分类:
数据库 时间:
2014-06-29 06:37:28
阅读次数:
394
(1) cv::Mat -> QImageOpenCV存储图片默认使用BGR顺序,而QImage使用RGB顺序,所以需要用cvtColor转换一下。使用QImage如下构造函数:QImage(uchar * data, int width, int height, Format format)QIm...
分类:
其他好文 时间:
2014-06-18 20:26:20
阅读次数:
202
一 、目标文件格式 1. PE(Portabel Executable) 2. ELF (Executable Linkable Format) : 可重定位、可执行、共享目标文件、核心转储文件思考: 弱符号和弱引用 VS 回调函数 __attrbute__ ((weakref)) voi...
分类:
其他好文 时间:
2014-06-18 13:02:54
阅读次数:
180
C - ID Codes
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld
& %llu
Submit Status
Appoint description:
System Crawler (2014-05-12)
Description
ID Cod...
分类:
其他好文 时间:
2014-06-18 11:30:56
阅读次数:
283
1.动机将一个复杂对象的构建与它的表示分离,使得同样的构建过程可以创建不同的表示。一个RTF(Rich Text Format)文档交换格式的阅读器应能将RTF转换为多种正文格式。该阅读器可以将RTF文档转换成普通ASCII文本或转换成一个能以交互方式编辑的正文窗口组件。但问题在于可能转换的数目是无...
分类:
其他好文 时间:
2014-06-18 08:24:19
阅读次数:
345
1006. 求和游戏Description石柱上有一排石头键盘,每个键上有一个整数。请你在键盘上选择两个键,使这两个键及其之间的键上的数字和最大。如果这个最大的和不为正,则输出“Game Over"。Input Format第1行:键的个数n。第2..n+1行:键上的数字整数ai。?100≤ai≤1...
分类:
编程语言 时间:
2014-06-18 00:25:48
阅读次数:
281
rman备份脚本
#! /bin/bash
su - oracle
rman target /
backup AS COMPRESSED BACKUPSET
database
include current controlfile format'/orabak/db_%d_%T_%s'
plus archivelog format'/orabak/a...
分类:
系统相关 时间:
2014-06-17 19:33:13
阅读次数:
348
知识关键词:DATE_FORMAT
select DATE_FORMAT(create_time,'%Y%u') weeks,count(caseid) count from tc_case group by weeks;
select DATE_FORMAT(create_time,'%Y%m%d') days,count(caseid) count from tc_case ...
分类:
数据库 时间:
2014-06-17 16:17:54
阅读次数:
247
binlog异步准实时刷出 平民架构效果很好,binlog异步准实时刷出,性能和默认的10相比没有下降,Binlog数据保护等级提高到准实时级别,这下彻底搞定数据保护了。//@平民架构: 继续修改代码,现在第二种情况压到2000了,只有在binlog切换时会有较大的下降。//@平民架构: 第二种情况...
分类:
其他好文 时间:
2014-06-17 15:59:10
阅读次数:
273
#!/usr/bin/pythonimport tracebacktry: 1/0#except Exception,e:# print traceback.format_exc() except Exception as e: print e#!/usr/bin/pythonimport tra....
分类:
编程语言 时间:
2014-06-17 15:07:08
阅读次数:
329