12 2014 档案

摘要:项目地址:https://code.google.com/p/snappy/下载后,解压。$./configure$make建立一个简单的测试文件a.cpp:#include "snappy.h"#include #include int main() { std::string s = "d... 阅读全文
posted @ 2014-12-16 17:56 yejinru 阅读(597) 评论(0) 推荐(0) 编辑
摘要:Fastbit (WAH)的代码可在链接中下载安装以及运行命令如下:解压命令:$ tar -zxvf fastbit-ibis1.3.8.tar.gz 安装命令:$ cd fastbit-ibis1.3.8$ ./configure$ make 由于安装时Makefile使用了GNU Libtool... 阅读全文
posted @ 2014-12-16 17:47 yejinru 阅读(330) 评论(0) 推荐(0) 编辑
摘要:zlib:zlib.hhttp://www.zlib.net/manual.html编译时加 -lzZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, const... 阅读全文
posted @ 2014-12-15 19:44 yejinru 阅读(1421) 评论(0) 推荐(0) 编辑
摘要:当数据量非常大,在同一个query中计算多个不相关列的distinct时,往往很容易出现数据倾斜现象,导致运行半天都不能得到结果。比如以下的SQL语句(a, b, c没有相关性):select distinct(a), distinct(b), distinct(c) from tableName;... 阅读全文
posted @ 2014-12-14 10:10 yejinru 阅读(1181) 评论(0) 推荐(0) 编辑