摘要:
自动生成项目的Makefile文件理论基础跟我一起写 Makefile: http://bbs.chinaunix.net/forum.php?mod=viewthread&tid=408225例解 autoconf 和 automake 生成 Makefile 文件: http://www.ibm... 阅读全文
摘要:
教程:http://www.cnblogs.com/dcba1112/archive/2011/05/01/2033805.html安装到下载maven: http://maven.apache.org/download.cgi$wget http://mirrors.hust.edu.cn/apa... 阅读全文
摘要:
sudo tcpdump -i eth0 port 80 -s 1024 -l -A![](http://images.cnitblog.com/blog2015/377842/201505/041838087046251.png) 阅读全文
摘要:
项目地址:https://code.google.com/p/snappy/下载后,解压。$./configure$make建立一个简单的测试文件a.cpp:#include "snappy.h"#include #include int main() { std::string s = "d... 阅读全文
摘要:
Fastbit (WAH)的代码可在链接中下载安装以及运行命令如下:解压命令:$ tar -zxvf fastbit-ibis1.3.8.tar.gz 安装命令:$ cd fastbit-ibis1.3.8$ ./configure$ make 由于安装时Makefile使用了GNU Libtool... 阅读全文
摘要:
zlib:zlib.hhttp://www.zlib.net/manual.html编译时加 -lzZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, const... 阅读全文
摘要:
当数据量非常大,在同一个query中计算多个不相关列的distinct时,往往很容易出现数据倾斜现象,导致运行半天都不能得到结果。比如以下的SQL语句(a, b, c没有相关性):select distinct(a), distinct(b), distinct(c) from tableName;... 阅读全文
摘要:
首先安装setuptools:windows:========1.下载 ez_setup.py,安装setuptoolshttps://bitbucket.org/pypa/setuptools/raw/bootstrap-py24/ez_setup.pycmd: python ez_setup.p... 阅读全文