推荐: blog.csdn.net/aquester https://github.com/eyjian https://www.cnblogs.com/aquester http://blog.chinaunix.net/uid/20682147.html
全部博文(594)
发布时间:2015-08-21 15:07:54
问题版本:0.9.0
make[4]: Entering directory `/tmp/X/thrift-0.9.0/lib/cpp'
/bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/thirdparty/boost/include -I./src -I./src/thrift -I/usr/local/thirdparty/openssl/include -Wall -g -O2 -M.........【阅读全文】
发布时间:2015-08-19 11:58:14
使用Google的dense_hash_map,在插入数据之前,需要先调用set_empty_key()设置一个空Key,Key的值可以为任意符合类型的。但请注意之后插入的Key不能和空Key相同,否则会abort。这个空Key的目的是为了防止死循环,它需要这样一个标志来判断查找是否该结束了。在调用earse()之前还需要调用set_deleted_key(),这是两点和标准.........【阅读全文】
发布时间:2015-08-16 23:14:36
10亿用户,同时在线用户1亿数据服务技术方案.pdf目录目录11. 一般方案1.........【阅读全文】
发布时间:2015-08-13 15:20:48
lsof用法
A.查看端口被谁占用
lsof -i:port,如:lsof -i:80
B.查看tcp监听端口
netstat -lpnt
C.查看udp监听端口
netstat -lpnu
D.查看本机IP
netstat -ie
E.lsof高级用法
lsof -i [46][protocol][@hos.........【阅读全文】
发布时间:2015-08-08 14:17:41
<img width="700" height="437" alt="" src="/attachment/201508/8/20682147_1439014504B9u8.jpg" /><br /><img width="700" height="437" alt="" src="/attachment/201508/8/20682147_1439014524qQBf.png" /><br /><img width="700" height="417" alt="" src="/attachment/201508/8/20682147_1439014560ZYKo.png" /><br .........【阅读全文】
发布时间:2015-07-30 16:58:34
CLibssh2可以帮助实现相当于Linux的ssh命令的功能。CLibssh2基于libssh2库(http://www.libssh2.org)实现,不过libssh2的使用较为复杂,而CLibssh2通过封装提供了简单的接口,即可以代码中实现远程执行命令。
头文件:......【阅读全文】
发布时间:2015-06-25 16:31:04
用“-Wl,-Bstatic”指定链接静态库,使用“-Wl,-Bdynamic”指定链接共享库,使用示例:
-Wl,-Bstatic -lmysqlclient_r -lssl -lcrypto -Wl,-Bdynamic -lrt -.........【阅读全文】
发布时间:2015-06-17 10:45:02
过大第一个原因是包含了符号表,这个可以通过strip删除,文件大小会立即缩水。strip命令提供了不同参数,方便可选择的删除。除此之外,两个编译参数“-ffunction-sections”和“-fdata-sections”,以及链接参数“-Wl,--gc-sections”可用来删除没有使用到的符号,“-Wl,”表示后面是传递给链接器ld的参数。objcopy也可.........【阅读全文】
发布时间:2015-06-15 16:23:58
编译libjson_7.6.1可能会遇到如下的问题:makefile:180: Extraneous text after `else' directivemakefile:183: *** only one `else' per conditional. Stop.打开makefile,定位到180行,内容如下:178 ifeq ($(BUILD_TYPE), small)179 CXXFLAGS = $(cxxflags_small)180 else if.........【阅读全文】
yuanxy20132014-01-14 14:48
LZ,你的基于C++的纯面向对象的通用高性能大并发TCP-SERVER/CLIENT开发框架实践系列之《前言篇》,《基础篇》写得非常棒,但是《服务器篇》、《客户端篇》却找不到,恳请楼主赐读。