05 2016 档案

摘要:1.bash把[[ $a -lt $b ]]看作一个单独的元素,并且返回一个退出码。退出码0为真,非零为假 例如: a=1 b=c [[ $a -lt $b ]] echo $? #0 a小于b为真 [[ $b -lt $a ]] echo $? #1 b小于a为假 2. ((...))和let...结果也能... 阅读全文
posted @ 2016-05-30 22:11 zengkefu 阅读(1176) 评论(0) 推荐(0) 编辑
摘要:基本数据类型的包装: 1.跨平台,用于移植 2.不同的框架类型包装的类型(MFC ,WIN32SDK,C) 3.基本数据类型的组装成的结构体 4.宏定义 数字类型 Go 也有基于架构的类型,例如:int、uint 和 uintptr。 浮点型: 阅读全文
posted @ 2016-05-30 21:01 zengkefu 阅读(296) 评论(0) 推荐(0) 编辑
摘要:shiyanlou:~/ $ go run hello.go hello world 阅读全文
posted @ 2016-05-30 20:07 zengkefu 阅读(176) 评论(0) 推荐(0) 编辑
摘要:ext4:(rw,noatime,nodiratime,nobarrier,data=ordered)xfs: (rw,noatime,nodiratim,nobarrier,logbufs=8,logbsize=32k) ssd: trim innodb_page_size=4k 减小块大小,提搞 阅读全文
posted @ 2016-05-30 15:39 zengkefu 阅读(249) 评论(0) 推荐(0) 编辑
摘要:mysql: c:底层 C++:相对上层 主备复制:主库通知备库来取 MYSQL复制源代码代码:SQL文件夹 int start_slave_thread( #ifdef HAVE_PSI_INTERFACE PSI_thread_key thread_key, #endif pthread_ha... 阅读全文
posted @ 2016-05-30 12:44 zengkefu 阅读(674) 评论(0) 推荐(0) 编辑
摘要:mysql两份日志: binlog :server innodb redo log:engine 两份日志顺序一致性:否则主备不一致 两份日志:原子性,同时都有,同时都无 2PC二阶段协义: 第一阶段:准备界段 第二阶段:提交阶段 买房子示例 准备界段: 房产局确认: 买方:钱是否准备好 卖方:房子是否可卖 提交界段: ... 阅读全文
posted @ 2016-05-30 11:49 zengkefu 阅读(2092) 评论(0) 推荐(0) 编辑
摘要:mysql源码编译 1.cmke 安装 yum install cmake 2.依赖的库下载机安装: yum -y install gcc* gcc-c++* autoconf* automake* zlib* libxml* ncurses-devel* libgcrypt* libtool* bison* openssl* 3. 4.make 5.mak... 阅读全文
posted @ 2016-05-30 10:33 zengkefu 阅读(425) 评论(0) 推荐(0) 编辑
摘要:[root@server1 ~]# mysqladmin -uroot -p status -i 1 <累加值>Enter password: Uptime: 158412 Threads: 1 Questions: 63 Slow queries: 0 Opens: 114 Flush table 阅读全文
posted @ 2016-05-30 08:59 zengkefu 阅读(677) 评论(0) 推荐(0) 编辑
摘要:Nginx模块fastcgi_cache的几个注意点 去年年底,我对nginx的fastcgi_cache进行摸索使用。在我的测试过程中,发现一些wiki以及网络上没被提到的注意点,这里分享一下。 去年年底,我对nginx的fastcgi_cache进行摸索使用。在我的测试过程中,发现一些wiki以 阅读全文
posted @ 2016-05-30 08:42 zengkefu 阅读(382) 评论(0) 推荐(0) 编辑
摘要:CGI与FastCGI 当我们在谈到cgi的时候,我们在讨论什么 最早的Web服务器简单地响应浏览器发来的HTTP请求,并将存储在服务器上的HTML文件返回给浏览器,也就是静态html。事物总是不 断发展,网站也越来越复杂,所以出现动态技术。但是服务器并不能直接运行 php,asp这样的文件,自己不 阅读全文
posted @ 2016-05-30 08:35 zengkefu 阅读(365) 评论(0) 推荐(0) 编辑
摘要:https://github.com/VVictorQi 阅读全文
posted @ 2016-05-30 07:37 zengkefu 阅读(176) 评论(0) 推荐(0) 编辑
摘要:总结:[0D,0A]的顺序才可以记事本才可以正常显示回车换行,其他EDITPLUS ,等编缉工具在下面三种情况下都可以换行 原始数据与表现形式 [0D,0A]序列才可以正常显示回车换行 修改0D 73 修改0A-->73 0A与0D互换 阅读全文
posted @ 2016-05-29 21:19 zengkefu 阅读(1019) 评论(0) 推荐(0) 编辑
摘要:gcc核心扩展linuxforum(转)=========================== Linux 内核使用的 GNU C 扩展 =========================== GNC CC 是一个功能非常强大的跨平台 C 编译器,它对 C 语言提供了很多扩展, 这些扩展对优化、目标代码布局、更安全的检查等方面提供了很强的支持。本文把 支持 GNU 扩展的 C 语言... 阅读全文
posted @ 2016-05-29 19:40 zengkefu 阅读(669) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/mydo/article/details/8279924 阅读全文
posted @ 2016-05-29 19:37 zengkefu 阅读(117) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/mydo/article/category/3084893 阅读全文
posted @ 2016-05-29 19:34 zengkefu 阅读(379) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/huiguixian/article/details/7044869 阅读全文
posted @ 2016-05-29 19:29 zengkefu 阅读(174) 评论(0) 推荐(0) 编辑
摘要:gcc提供了大量的警告选项,对代码中可能存在的问题提出警告,通常可以使用-Wall来开启以下警告: -Waddress -Warray-bounds (only with -O2) -Wc++0x-compat -Wchar-subscripts -Wimplicit-int -Wimplicit- 阅读全文
posted @ 2016-05-29 19:25 zengkefu 阅读(309) 评论(0) 推荐(0) 编辑
摘要:http://redking.blog.51cto.com/27212/119409 阅读全文
posted @ 2016-05-29 19:14 zengkefu 阅读(153) 评论(0) 推荐(0) 编辑
摘要:符号 ASCII码 意义 \n 10 换行NL \r 13 回车CR 回车 \r 本义是光标重新回到本行开头,r的英文return,控制字符可以写成CR,即Carriage Return 换行 \n 本义是光标往下一行(不一定到下一行行首),n的英文newline,控制字符可以写成LF,即Line Feed 在不同的操作系... 阅读全文
posted @ 2016-05-29 17:56 zengkefu 阅读(314) 评论(0) 推荐(0) 编辑
摘要:Makefile详解--隐含规则(转) Makefile系列文章,这里有个前辈连续洗了一个系列来介绍,共有26篇博客文章。 http://www.cppblog.com/ivenher/archives/2007/04.html Makefile隐含规则 ———— 在我们使用Makefile时,有一些我们会经常使用,而且使用频率非常高的东西,比如,我们编译 C/C++的源程序为中间目标文... 阅读全文
posted @ 2016-05-29 17:50 zengkefu 阅读(5300) 评论(0) 推荐(0) 编辑
摘要:http://my.oschina.net/senmole/blog?catalog=153878Linux Kernel的代码,上次就发现一个结构体的定义形式看不懂,后来才知道它用的不是标准的ANSI C,而是GCC的一些扩展。刚好看到《Linux内核修炼之道》中对GCC扩展有所描述,转载一下吧,对看kernel代码有所帮助。 3.5内核代码的特点 Linux内核同时使用C语言和汇编语言实现... 阅读全文
posted @ 2016-05-29 17:43 zengkefu 阅读(420) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/hazir/tag/kernel/ Linux 内核进程管理之进程ID Linux 内核使用 task_struct 数据结构来关联所有与进程有关的数据和结构,Linux 内核所有涉及到进程和程序的所有算法都是围绕该数据结构建立的,是内核中最重要的数据结 阅读全文
posted @ 2016-05-29 15:50 zengkefu 阅读(556) 评论(0) 推荐(0) 编辑
摘要:http://www.ibm.com/developerworks/cn/linux/l-cn-dumpanalyse/https://www.kernel.org/pub/linux/utils/kernel/ http://seanlook.com/2014/11/03/one-troubleshooting-for-centos-corrupt/ :记一次错误卸载软件包导致Linu... 阅读全文
posted @ 2016-05-29 15:41 zengkefu 阅读(1686) 评论(0) 推荐(0) 编辑
摘要:binutils-- a tools set * ld - the GNU linker. * as - the GNU assembler. * addr2line - Converts addresses intofilenames and line numbers. * ar - A utility for creating, modifyingand extracting fr... 阅读全文
posted @ 2016-05-29 15:29 zengkefu 阅读(341) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/tenfyguo/article/details/9409743 http://blog.csdn.net/tenfyguo/article/details/50185915 http://blog.chinaunix.net/uid-20788636-id 阅读全文
posted @ 2016-05-29 14:25 zengkefu 阅读(769) 评论(0) 推荐(0) 编辑
摘要:dmesg命令基于缓冲区打印信息dmesg -c可以清除该内存信息清除后demsg 命令不显示任何信息,但可以到/var/log/dmesg查看信息dmesg |tail 20dmesg |head 20dmesg |grep sdadmesg |grep ttydmesg |grep memorydmesg |grep DMAdmesg |grep usb[root@localhost var... 阅读全文
posted @ 2016-05-29 14:08 zengkefu 阅读(3528) 评论(1) 推荐(0) 编辑
摘要:[root@localhost log]# cat -n /root/xx.c 1 2 3 #include 4 5 void func(char *p) 6 { 7 *p = 'p'; 8 } 9 10 int main(int argc, char *argv[]) 11... 阅读全文
posted @ 2016-05-29 13:25 zengkefu 阅读(2372) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/wangzuxi/article/category/2647871 阅读全文
posted @ 2016-05-29 09:41 zengkefu 阅读(238) 评论(0) 推荐(0) 编辑
摘要:[root@localhost src]# uname -aLinux localhost.localdomain 2.6.32 #1 SMP Sun Sep 20 18:58:21 PDT 2015 x86_64 x86_64 x86_64 GNU/Linux redhat 5内核 是从源代码升级 阅读全文
posted @ 2016-05-29 09:04 zengkefu 阅读(590) 评论(0) 推荐(0) 编辑
摘要:[root@monitor klvl]# uname -aLinux monitor 2.6.32-431.23.3.el6.x86_64 #1 SMP Thu Jul 31 17:20:51 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux [root@monitor 阅读全文
posted @ 2016-05-29 08:36 zengkefu 阅读(1662) 评论(0) 推荐(0) 编辑
摘要:diskiohttp://blog.163.com/digoal%40126/blog/static/16387704020131015105532435/[root@localhost linux-2.6.32]# stap -l 'kernel.function("vfs_*")' kernel.function("vfs_cancel_lock@fs/locks.c:2074") ... 阅读全文
posted @ 2016-05-28 21:10 zengkefu 阅读(913) 评论(0) 推荐(0) 编辑
摘要:参考:http://www.cnblogs.com/ahuo/category/72819.html http://blog.csdn.net/tenfyguo/article/details/8159176 http://blog.csdn.net/ylyuanlu/article/details/9115159 一.进程产生进程coredump 必备条件: uli... 阅读全文
posted @ 2016-05-28 21:03 zengkefu 阅读(528) 评论(0) 推荐(0) 编辑
摘要:想要查看一些结构体的定义,比如struct ip_mreq,可以查看头文件, 所有的系统预定义的结构体都在内核源代码的/include下有定义,ubuntu里面是/usr/include 。 比如要找上面提到的struct ip_mreq,可以这样:find /usr/include -name "*.h" | xargs grep "struct ip_mreq" -rn ,结果显示,这个... 阅读全文
posted @ 2016-05-28 20:58 zengkefu 阅读(1170) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/msdnchina/article/details/38377125 阅读全文
posted @ 2016-05-28 20:36 zengkefu 阅读(183) 评论(0) 推荐(0) 编辑
摘要:[root@server1 ~]# lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 1 On-line CPU(s) list: 0 Thread(s) per core:... 阅读全文
posted @ 2016-05-28 20:32 zengkefu 阅读(592) 评论(0) 推荐(0) 编辑
摘要:http://blog.chinaunix.net/uid-20321537-id-3466022.html 阅读全文
posted @ 2016-05-28 18:17 zengkefu 阅读(145) 评论(0) 推荐(0) 编辑
摘要:https://github.com/openresty/nginx-systemtap-toolkit 阅读全文
posted @ 2016-05-28 18:10 zengkefu 阅读(334) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/cywosp/article/details/8767327SYNOPSIS #include #include #include int open(const char *pathname, int flags); int open(const char *pathname,... 阅读全文
posted @ 2016-05-28 18:02 zengkefu 阅读(193) 评论(0) 推荐(0) 编辑
摘要:http://blog.codingnow.com/ 阅读全文
posted @ 2016-05-27 21:44 zengkefu 阅读(121) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/xcywt/p/4998963.html系统定义符号集中声明在 /usr/src/kernels/linux-2.6.32/include/linux/syscalls.h中,其定义在不同的文件中eg: asmlinkage long sys_getpid(void); 在kernel/timer.c中定义 系统调用函数getpid ----->对... 阅读全文
posted @ 2016-05-27 18:06 zengkefu 阅读(334) 评论(0) 推荐(0) 编辑
摘要:[root@localhost log]# find / |grep syscall_table /usr/src/kernels/linux-2.6.32/arch/x86/kernel/syscall_table_32.S /usr/src/kernels/linux-2.6.32/arch/microblaze/kernel/syscall_table.S /usr/src/kernels... 阅读全文
posted @ 2016-05-27 17:59 zengkefu 阅读(547) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/wudongxu/article/category/791519 阅读全文
posted @ 2016-05-27 17:38 zengkefu 阅读(166) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/alisecurity/p/5526811.html https://jaq.alibaba.com/community/category?spm=a313e.7916648.21000000.2.HJ9Tsr&catid=4 阅读全文
posted @ 2016-05-27 17:06 zengkefu 阅读(202) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/ACFLOOD/p/5533022.html 阅读全文
posted @ 2016-05-27 17:04 zengkefu 阅读(115) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/ACFLOOD/p/5528035.html 阅读全文
posted @ 2016-05-27 17:01 zengkefu 阅读(149) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/itxiongwei/p/5533995.html 阅读全文
posted @ 2016-05-27 16:57 zengkefu 阅读(153) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/h-hq/p/5213767.html 阅读全文
posted @ 2016-05-27 16:56 zengkefu 阅读(259) 评论(0) 推荐(0) 编辑
摘要:1)安装devtoolset yum groupinstall "Development tools" 2)安装编译Python需要的包包 yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel 3)下载并解压Python 2.7.9的源代码 mkdir soft cd soft wget --n... 阅读全文
posted @ 2016-05-27 15:59 zengkefu 阅读(305) 评论(0) 推荐(0) 编辑
摘要:要求IDA 6.8 程序1与程序2混合比较图 2 程序1main 3 程序2 main 4 5 阅读全文
posted @ 2016-05-27 09:04 zengkefu 阅读(3125) 评论(0) 推荐(0) 编辑
摘要:https://code.google.com/archive/p/patchdiff2/downloads 阅读全文
posted @ 2016-05-27 08:00 zengkefu 阅读(831) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/zhuyp1015/category/376363.html 阅读全文
posted @ 2016-05-26 17:30 zengkefu 阅读(120) 评论(0) 推荐(0) 编辑
摘要:1.创建目录 demo 当前目录demo [root@monitor demo]# mkdir xx[root@monitor demo]# cp foo.patch xx[root@monitor demo]# patch -p0 < xx/foo.patch patching file old/ 阅读全文
posted @ 2016-05-26 16:42 zengkefu 阅读(4032) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/maotianwang/article/details/11107083 阅读全文
posted @ 2016-05-26 15:22 zengkefu 阅读(205) 评论(0) 推荐(0) 编辑
摘要:http://mingxinglai.com/cn/2013/07/gdbtui/ MySQL源码注释与类图 http://mingxinglai.com/cn/2015/08/mysql-annotation/ 阅读全文
posted @ 2016-05-26 12:05 zengkefu 阅读(484) 评论(0) 推荐(0) 编辑
摘要:http://2016.qconbeijing.com/ 阅读全文
posted @ 2016-05-26 11:49 zengkefu 阅读(141) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/321157/cid--1-list-1/ http://www.hdb.com/timeline/velqk 阅读全文
posted @ 2016-05-26 11:30 zengkefu 阅读(583) 评论(0) 推荐(0) 编辑
摘要:DTrace patch for Python 2.7.x and 3.x Última Actualización: 21 de septiembre de 2015 https://www.jcea.es/artic/python_dtrace.htm You can follow this w 阅读全文
posted @ 2016-05-26 11:19 zengkefu 阅读(540) 评论(0) 推荐(0) 编辑
摘要:https://github.com/pyconsk/2016-slides 阅读全文
posted @ 2016-05-26 11:09 zengkefu 阅读(417) 评论(0) 推荐(0) 编辑
摘要:http://vdisk.weibo.com/s/dBzv2siaHK2H http://vdisk.weibo.com/wap/u/3460619722 https://yunqi.aliyun.com/2015/shanghai/live.html https://yq.aliyun.com/a 阅读全文
posted @ 2016-05-26 10:39 zengkefu 阅读(143) 评论(0) 推荐(0) 编辑
摘要:原文 http://resources.infosecinstitute.com/system-address-map-initialization-x86x64-architecture-part-2-pci-express-based-systems/ 原文 http://resources.i 阅读全文
posted @ 2016-05-26 10:35 zengkefu 阅读(2846) 评论(0) 推荐(0) 编辑
摘要:http://mp.weixin.qq.com/s?__biz=MzA4NjI4MzM4MQ%3D%3D&mid=512708319&idx=1&sn=6af5f424d7cd8c0fecdb02b9545928d2&scene=0&previewkey=xmttlAHoZX%2BgYKBD2CXb 阅读全文
posted @ 2016-05-26 09:29 zengkefu 阅读(171) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/yueguanghaidao/article/details/11274737 阅读全文
posted @ 2016-05-26 09:23 zengkefu 阅读(234) 评论(0) 推荐(0) 编辑
摘要:http://stackoverflow.com/questions/6345020/linux-memory-buffer-vs-cache 阅读全文
posted @ 2016-05-26 09:22 zengkefu 阅读(155) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/15480802/cid-84815-list-1/ 阅读全文
posted @ 2016-05-26 09:20 zengkefu 阅读(108) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/liuyez123/article/details/50992038 阅读全文
posted @ 2016-05-26 09:18 zengkefu 阅读(326) 评论(0) 推荐(0) 编辑
摘要:https://dom.as/2014/03/31/mongo-io/ 阅读全文
posted @ 2016-05-26 09:15 zengkefu 阅读(123) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/gaowenhui2008/article/category/2934007 阅读全文
posted @ 2016-05-26 09:11 zengkefu 阅读(134) 评论(0) 推荐(0) 编辑
摘要:http://elixir-lang.org/ 阅读全文
posted @ 2016-05-26 09:09 zengkefu 阅读(194) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/15480802/cid-84815-list-1/ 阅读全文
posted @ 2016-05-26 09:06 zengkefu 阅读(145) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/TomXu/archive/2011/12/15/2288411.html http://blog.csdn.net/hi_kevin/article/details/37761919 深入理解javascript之执行上下文(execution con 阅读全文
posted @ 2016-05-26 09:00 zengkefu 阅读(149) 评论(0) 推荐(0) 编辑
摘要:http://www.nowamagic.net/librarys/veda/detail/1579 阅读全文
posted @ 2016-05-26 08:59 zengkefu 阅读(124) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/phpkernel/article/details/5734743 阅读全文
posted @ 2016-05-26 08:55 zengkefu 阅读(138) 评论(0) 推荐(0) 编辑
摘要:http://events.linuxfoundation.org/events/archive/2015/linuxcon-europe 阅读全文
posted @ 2016-05-26 08:54 zengkefu 阅读(192) 评论(0) 推荐(0) 编辑
摘要:http://www.valleytalk.org/2014/12/30/%E5%AD%99%E9%92%9F%E7%A7%80-%E3%80%82%E3%80%8A-%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%E6%95%99%E7%A8%8B-%E3%80%8B%E 阅读全文
posted @ 2016-05-26 08:53 zengkefu 阅读(524) 评论(0) 推荐(0) 编辑
摘要:http://dblab.xmu.edu.cn/post/368/ 阅读全文
posted @ 2016-05-26 08:48 zengkefu 阅读(375) 评论(0) 推荐(0) 编辑
摘要:https://blogs.oracle.com/ksplice/entry/8_gdb_tricks_you_should 阅读全文
posted @ 2016-05-26 08:46 zengkefu 阅读(159) 评论(0) 推荐(0) 编辑
摘要:https://www.gitbook.com/book/gnuhpc/redis-all-about/details 阅读全文
posted @ 2016-05-26 08:45 zengkefu 阅读(155) 评论(0) 推荐(0) 编辑
摘要:http://2016.qconbeijing.com/slides 阅读全文
posted @ 2016-05-26 08:42 zengkefu 阅读(112) 评论(0) 推荐(0) 编辑
摘要:http://kernel.taobao.org/index.php?title=Monthly_Kernel_Reports 阅读全文
posted @ 2016-05-26 08:41 zengkefu 阅读(578) 评论(0) 推荐(0) 编辑
摘要:http://2015.gopherchina.org/ 阅读全文
posted @ 2016-05-26 08:40 zengkefu 阅读(123) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/23718752/viewspace-2091818/#rd 阅读全文
posted @ 2016-05-26 08:39 zengkefu 阅读(116) 评论(0) 推荐(0) 编辑
摘要:http://imysql.com/2015/10/20/mysql-faq-key-len-in-explain.shtml 阅读全文
posted @ 2016-05-26 08:38 zengkefu 阅读(121) 评论(0) 推荐(0) 编辑
摘要:http://www.ruanyifeng.com/blog/2013/08/linux_boot_process.html 阅读全文
posted @ 2016-05-26 08:37 zengkefu 阅读(209) 评论(0) 推荐(0) 编辑
摘要:http://dev.mysql.com/doc/internals/en/ 阅读全文
posted @ 2016-05-26 08:35 zengkefu 阅读(336) 评论(0) 推荐(0) 编辑
摘要:http://raolonghui.com/2015/06/24/innodb%E7%9A%84redo%E6%97%A5%E5%BF%97%E7%AE%A1%E7%90%86/#comment-11 阅读全文
posted @ 2016-05-26 08:29 zengkefu 阅读(539) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/mouseIT/p/5288204.html 阅读全文
posted @ 2016-05-26 08:25 zengkefu 阅读(181) 评论(0) 推荐(0) 编辑
摘要:http://weekly.dockone.io/issues 阅读全文
posted @ 2016-05-26 08:24 zengkefu 阅读(203) 评论(0) 推荐(0) 编辑
摘要:http://www.ibm.com/developerworks/cn/linux/l-assembly/ 阅读全文
posted @ 2016-05-26 08:21 zengkefu 阅读(125) 评论(0) 推荐(0) 编辑
摘要:http://blog.chinaunix.net/uid-28897358-id-3775640.html 阅读全文
posted @ 2016-05-26 08:20 zengkefu 阅读(346) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/zhangchaoyang/articles/2057178.html 阅读全文
posted @ 2016-05-26 08:17 zengkefu 阅读(128) 评论(0) 推荐(0) 编辑
摘要:http://alanwu.blog.51cto.com/3652632/1286553 阅读全文
posted @ 2016-05-26 08:15 zengkefu 阅读(730) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/itech/archive/2012/05/15/2502284.html 阅读全文
posted @ 2016-05-26 08:13 zengkefu 阅读(112) 评论(0) 推荐(0) 编辑
摘要:http://www.penglixun.com/tech/system/use_iostat_analyse_linux_disks.html 阅读全文
posted @ 2016-05-26 08:10 zengkefu 阅读(112) 评论(0) 推荐(0) 编辑
摘要:http://www.seanyxie.com/wireshark%E6%8A%93%E5%8C%85%E5%9B%BE%E8%A7%A3-tcp%E4%B8%89%E6%AC%A1%E6%8F%A1%E6%89%8B%E5%9B%9B%E6%AC%A1%E6%8C%A5%E6%89%8B%E8%A 阅读全文
posted @ 2016-05-25 15:54 zengkefu 阅读(590) 评论(0) 推荐(0) 编辑
摘要:https://cs162.eecs.berkeley.edu/ 阅读全文
posted @ 2016-05-25 15:47 zengkefu 阅读(822) 评论(0) 推荐(0) 编辑
摘要:https://www.nginx.com/resources/wiki/ 阅读全文
posted @ 2016-05-25 15:34 zengkefu 阅读(166) 评论(0) 推荐(0) 编辑
摘要:http://bestvivi.com/2015/09/09/MySQL%E4%B8%BB%E4%B8%BB%E5%A4%8D%E5%88%B6+LVS+Keepalived%E5%AE%9E%E7%8E%B0MySQL%E9%AB%98%E5%8F%AF%E7%94%A8%E6%80%A7/ 阅读全文
posted @ 2016-05-25 15:10 zengkefu 阅读(117) 评论(0) 推荐(0) 编辑
摘要:https://www.kernel.org/pub/linux/kernel/people/paulmck/ 阅读全文
posted @ 2016-05-25 15:08 zengkefu 阅读(686) 评论(0) 推荐(0) 编辑
摘要:http://heipark.iteye.com/blog/1750970 阅读全文
posted @ 2016-05-25 15:06 zengkefu 阅读(125) 评论(0) 推荐(0) 编辑
摘要:https://coder.tw/?p=6375 阅读全文
posted @ 2016-05-25 15:05 zengkefu 阅读(168) 评论(0) 推荐(0) 编辑
摘要:http://www.django-china.cn/topic/101/ 阅读全文
posted @ 2016-05-25 15:02 zengkefu 阅读(505) 评论(0) 推荐(0) 编辑
摘要:http://www.kegel.com/c10k.html 阅读全文
posted @ 2016-05-25 14:59 zengkefu 阅读(142) 评论(0) 推荐(0) 编辑
摘要:http://bestvivi.com/2015/09/09/MySQL%E4%B8%BB%E4%B8%BB%E5%A4%8D%E5%88%B6+LVS+Keepalived%E5%AE%9E%E7%8E%B0MySQL%E9%AB%98%E5%8F%AF%E7%94%A8%E6%80%A7/ 阅读全文
posted @ 2016-05-25 14:58 zengkefu 阅读(138) 评论(0) 推荐(0) 编辑
摘要:http://uwsgi-docs.readthedocs.io/en/latest/Nginx.html http://sunxiunan.com/?p=1778 cgi fastcgi wsgi uwsgi uWSGI是一个Web服务器,它实现了WSGI协议、uwsgi、http等协议。Ngin 阅读全文
posted @ 2016-05-25 14:56 zengkefu 阅读(279) 评论(0) 推荐(0) 编辑
摘要:https://yq.aliyun.com/users/1597777588650149?spm=5176.blog11192.yqblogcon1.2.5mdGQb 阅读全文
posted @ 2016-05-25 14:54 zengkefu 阅读(419) 评论(0) 推荐(0) 编辑
摘要:http://www.ruanyifeng.com/blog/2014/09/illustration-ssl.html 阅读全文
posted @ 2016-05-25 14:53 zengkefu 阅读(144) 评论(0) 推荐(0) 编辑
摘要:https://oracleus.activeevents.com/2014/connect/focusOnDoc.do?focusID=17888 阅读全文
posted @ 2016-05-25 14:51 zengkefu 阅读(139) 评论(0) 推荐(0) 编辑
摘要:http://blog.sina.cn/dpool/blog/s/blog_e59371cc0102ux5w.html?wm=3049_a111 阅读全文
posted @ 2016-05-25 14:49 zengkefu 阅读(199) 评论(0) 推荐(0) 编辑
摘要:http://www.cs.usfca.edu/~galles/visualization/Algorithms.html?url_type=39&object_type=webpage&pos=1 阅读全文
posted @ 2016-05-25 14:48 zengkefu 阅读(158) 评论(0) 推荐(0) 编辑
摘要:http://www.php-oa.com/2009/02/03/iostat.html 阅读全文
posted @ 2016-05-25 14:45 zengkefu 阅读(273) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/ITer_ZC/article/category/2758863 阅读全文
posted @ 2016-05-25 14:40 zengkefu 阅读(119) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/ITer_ZC/article/category/2796741 阅读全文
posted @ 2016-05-25 14:39 zengkefu 阅读(161) 评论(0) 推荐(0) 编辑
摘要:http://hurlex.0xffffff.org/ 这里是hurlex这个基于x86架构的内核Demo的详细开发文档, 包含PDF文档和生成PDF的XeLaTex源码和文档每章节的阶段代码。 你可以按照如下步骤获得整个项目代码。 阅读全文
posted @ 2016-05-25 14:29 zengkefu 阅读(593) 评论(0) 推荐(0) 编辑
摘要:http://www.jobbole.com/members/Jeff/ http://www.kawabangga.com/ 阅读全文
posted @ 2016-05-25 14:27 zengkefu 阅读(394) 评论(0) 推荐(0) 编辑
摘要:http://my.oschina.net/fuckBAT/blog/318355?fromerr=jK6wCh1p#OSC_h4_4 阅读全文
posted @ 2016-05-25 13:51 zengkefu 阅读(130) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/thl789/article/details/7506133 阅读全文
posted @ 2016-05-25 13:44 zengkefu 阅读(138) 评论(0) 推荐(0) 编辑
摘要:http://down.52pojie.cn/Tools/Disassemblers/Zynamics_BinDiff_4.2.7z 阅读全文
posted @ 2016-05-25 13:41 zengkefu 阅读(209) 评论(0) 推荐(0) 编辑
摘要:http://sysprogs.com/VisualKernel/ 阅读全文
posted @ 2016-05-25 13:19 zengkefu 阅读(620) 评论(0) 推荐(0) 编辑
摘要:http://shixm.iteye.com/blog/1724718 http://blog.csdn.net/dianhuiren/article/details/7543886 阅读全文
posted @ 2016-05-25 13:12 zengkefu 阅读(212) 评论(0) 推荐(0) 编辑
摘要:http://my.oschina.net/u/1440383/blog/313798?fromerr=Tvth3ODF 阅读全文
posted @ 2016-05-25 13:11 zengkefu 阅读(366) 评论(0) 推荐(0) 编辑
摘要:https://github.com/openresty 阅读全文
posted @ 2016-05-25 13:10 zengkefu 阅读(203) 评论(0) 推荐(0) 编辑
摘要:https://github.com/jobbole/awesome-mysql-cn 阅读全文
posted @ 2016-05-25 12:49 zengkefu 阅读(158) 评论(0) 推荐(0) 编辑
摘要:http://www.oschina.net/p/netdata?fromerr=hjJMgUjE#rd 阅读全文
posted @ 2016-05-25 12:46 zengkefu 阅读(142) 评论(0) 推荐(0) 编辑
摘要:http://roclinux.cn/?p=1277 阅读全文
posted @ 2016-05-25 12:45 zengkefu 阅读(404) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/napoleon_liu/archive/2011/04/01/2001886.html http://blog.csdn.net/ruglcc/article/details/8574113 阅读全文
posted @ 2016-05-25 12:44 zengkefu 阅读(331) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/rollenholt/archive/2012/04/20/2458763.html 阅读全文
posted @ 2016-05-25 12:40 zengkefu 阅读(188) 评论(0) 推荐(0) 编辑
摘要:http://ind.ntou.edu.tw/~dada/cgi/ 阅读全文
posted @ 2016-05-25 12:39 zengkefu 阅读(118) 评论(0) 推荐(0) 编辑
摘要:http://blog.sina.cn/dpool/blog/u/1809307971#type=-1 阅读全文
posted @ 2016-05-25 12:37 zengkefu 阅读(203) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/hunanchenxingyu/article/details/9998089 阅读全文
posted @ 2016-05-25 12:35 zengkefu 阅读(197) 评论(0) 推荐(0) 编辑
摘要:http://m.blog.itpub.net/22664653/viewspace-1175858/ 阅读全文
posted @ 2016-05-25 12:35 zengkefu 阅读(182) 评论(0) 推荐(0) 编辑
摘要:http://blog.linjian.org/tech/linux/shell/ 阅读全文
posted @ 2016-05-25 12:34 zengkefu 阅读(253) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/dreamcoding/article/details/8519689/ http://caoruntao.iteye.com/blog/1018656 阅读全文
posted @ 2016-05-25 12:31 zengkefu 阅读(439) 评论(0) 推荐(0) 编辑
摘要:https://cocycles.com/ 阅读全文
posted @ 2016-05-25 12:29 zengkefu 阅读(194) 评论(0) 推荐(0) 编辑
摘要:https://www.gitbook.com 阅读全文
posted @ 2016-05-25 12:25 zengkefu 阅读(280) 评论(0) 推荐(0) 编辑
摘要:https://www.gitbook.com/book/xinqiu/linux-insides-cn/details https://www.gitbook.com/book/looly/elasticsearch-the-definitive-guide-cn/details 阅读全文
posted @ 2016-05-25 12:22 zengkefu 阅读(233) 评论(0) 推荐(0) 编辑
摘要:http://njumdl.sinaapp.com/ https://github.com/mudongliang 阅读全文
posted @ 2016-05-25 12:20 zengkefu 阅读(127) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/XscKernel/article/category/1276234 阅读全文
posted @ 2016-05-25 12:18 zengkefu 阅读(146) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/vajoy/p/5341664.html 阅读全文
posted @ 2016-05-25 12:16 zengkefu 阅读(130) 评论(0) 推荐(0) 编辑
摘要:http://cenalulu.github.io/linux/all-about-cpu-cache/ 阅读全文
posted @ 2016-05-25 12:14 zengkefu 阅读(157) 评论(0) 推荐(0) 编辑
摘要:http://xinqiu.me/all-archives/ https://github.com/xinqiu 阅读全文
posted @ 2016-05-25 12:13 zengkefu 阅读(153) 评论(0) 推荐(0) 编辑
摘要:http://ibillxia.github.io/blog/archives/ 阅读全文
posted @ 2016-05-25 12:10 zengkefu 阅读(128) 评论(0) 推荐(0) 编辑
摘要:http://www.oschina.net/translate/choosing-a-linux-tracer 阅读全文
posted @ 2016-05-25 12:08 zengkefu 阅读(234) 评论(0) 推荐(0) 编辑
摘要:http://kumu-linux.github.io/blog/2014/04/21/performance-cpu/ 阅读全文
posted @ 2016-05-25 12:07 zengkefu 阅读(107) 评论(0) 推荐(0) 编辑
摘要:http://keithlan.github.io/2015/07/16/mysql_replication_inside/ 阅读全文
posted @ 2016-05-25 12:05 zengkefu 阅读(106) 评论(0) 推荐(0) 编辑
摘要:http://hustcat.github.io/lvs-pracice/ 阅读全文
posted @ 2016-05-25 12:04 zengkefu 阅读(113) 评论(0) 推荐(0) 编辑
摘要:https://segmentfault.com/a/1190000000669312 阅读全文
posted @ 2016-05-25 12:02 zengkefu 阅读(153) 评论(0) 推荐(0) 编辑
摘要:https://github-ranking.com/ 阅读全文
posted @ 2016-05-25 11:59 zengkefu 阅读(152) 评论(0) 推荐(0) 编辑
摘要:https://xcoder.in/2015/08/10/mysql-binlog-try/ 阅读全文
posted @ 2016-05-25 11:58 zengkefu 阅读(102) 评论(0) 推荐(0) 编辑
摘要:http://book.mixu.net/distsys/single-page.html 阅读全文
posted @ 2016-05-25 11:56 zengkefu 阅读(112) 评论(0) 推荐(0) 编辑
摘要:http://hedengcheng.com/?p=238 阅读全文
posted @ 2016-05-25 11:53 zengkefu 阅读(372) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/qiuyepiaoling/article/category/709481 阅读全文
posted @ 2016-05-25 11:52 zengkefu 阅读(215) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/lwei_998/article/details/46864453 阅读全文
posted @ 2016-05-25 11:49 zengkefu 阅读(208) 评论(0) 推荐(0) 编辑
摘要:http://www.chongh.wiki/ 阅读全文
posted @ 2016-05-25 11:46 zengkefu 阅读(191) 评论(0) 推荐(0) 编辑
摘要:https://yq.aliyun.com/articles/42282?spm=5176.team18.teamshow1.19.9TkKmZ#rd 阅读全文
posted @ 2016-05-25 11:45 zengkefu 阅读(2138) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/lanxuezaipiao/p/3450201.html 阅读全文
posted @ 2016-05-25 11:41 zengkefu 阅读(275) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/koka24/p/5405964.html 阅读全文
posted @ 2016-05-25 11:39 zengkefu 阅读(139) 评论(0) 推荐(0) 编辑
摘要:http://yongxiong.leanote.com/post/mysql_float_double_decimal 阅读全文
posted @ 2016-05-25 11:38 zengkefu 阅读(330) 评论(0) 推荐(0) 编辑
摘要:http://www.chongh.wiki/blog/2016/02/17/memory-safety/ 阅读全文
posted @ 2016-05-25 11:36 zengkefu 阅读(197) 评论(0) 推荐(0) 编辑
摘要:https://yq.aliyun.com/articles/35979#index_section 阅读全文
posted @ 2016-05-25 11:35 zengkefu 阅读(431) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/skyflying2012/article/details/10044343 阅读全文
posted @ 2016-05-25 11:29 zengkefu 阅读(249) 评论(0) 推荐(0) 编辑
摘要:http://my.oschina.net/fgq611/blog/113249 阅读全文
posted @ 2016-05-25 11:28 zengkefu 阅读(231) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/bastard/category/412387.html 阅读全文
posted @ 2016-05-25 11:26 zengkefu 阅读(135) 评论(0) 推荐(0) 编辑
摘要:http://www.90qj.com/?post=318http://ixdba.blog.51cto.com/2895551/1751377 运维知识体系v0.5-(运维社区-赵班长出品,欢迎转载!) 运维管理体系 测试和开发相关 运维架构层级 内容描述 监控体系 安全体系 备份体系 自动化体系 管理必知必会ITSMITILIT Service C... 阅读全文
posted @ 2016-05-25 11:11 zengkefu 阅读(1826) 评论(0) 推荐(2) 编辑
摘要:阿里封神谈hadoop学习之路 封神 2016-04-14 16:03:51 浏览3283 评论3 发表于: 阿里云E-MapReduce >> 开源大数据周刊 hadoop 学生 spark 摘要: 在大数据时代,要想个性化实现业务的需求,还是得操纵各类的大数据软件,如:hadoop、hive、s 阅读全文
posted @ 2016-05-25 11:06 zengkefu 阅读(2566) 评论(1) 推荐(0) 编辑
摘要:http://www.kerneltravel.net/?p=534 http://mp.weixin.qq.com/mp/homepage?__biz=MzI3NzA5MzUxNA==&hid=2&sn=73cb26dd403cac563c9d661a8126c035#wechat_redirec 阅读全文
posted @ 2016-05-25 11:04 zengkefu 阅读(178) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/22664653/viewspace-1994016/ 阅读全文
posted @ 2016-05-25 01:24 zengkefu 阅读(124) 评论(0) 推荐(0) 编辑
摘要:Pika 是 360 DBA 和基础架构组联合开发的类 Redis 存储系统,完全支持 Redis 协议,用户不需要修改任何代码,就可以将服务迁移至 Pika。有维护 Redis 经验的 DBA 维护 Pika 不需要学习成本。 Pika 主要解决的是用户使用 Redis 的内存大小超过 50G、8 阅读全文
posted @ 2016-05-25 01:19 zengkefu 阅读(2692) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/18841027/viewspace-1649618/ 阅读全文
posted @ 2016-05-25 01:17 zengkefu 阅读(374) 评论(1) 推荐(0) 编辑
摘要:http://www.lai18.com/content/7451979.html 阅读全文
posted @ 2016-05-25 01:12 zengkefu 阅读(120) 评论(0) 推荐(0) 编辑
摘要:http://blog.chinaunix.net/uid-20767124-id-1849881.html 阅读全文
posted @ 2016-05-25 01:10 zengkefu 阅读(174) 评论(0) 推荐(0) 编辑
摘要:http://www.jobbole.com/members/colleen5/ 阅读全文
posted @ 2016-05-25 01:08 zengkefu 阅读(116) 评论(0) 推荐(0) 编辑
摘要:http://deepfuture.iteye.com/ 阅读全文
posted @ 2016-05-25 01:05 zengkefu 阅读(160) 评论(0) 推荐(0) 编辑
摘要:https://wiki.python.org/moin/DebuggingWithGdb http://blog.nsfocus.net/python-program-troubleshooting-gdb-2/ 阅读全文
posted @ 2016-05-25 01:03 zengkefu 阅读(237) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/handsomekang/article/details/41479597?utm_source=tuicool&utm_medium=referral 阅读全文
posted @ 2016-05-25 01:02 zengkefu 阅读(207) 评论(0) 推荐(0) 编辑
摘要:http://blog.nsfocus.net/locate-python-built-in-function/ 阅读全文
posted @ 2016-05-25 01:00 zengkefu 阅读(794) 评论(0) 推荐(0) 编辑
摘要:http://blog.chinaunix.net/uid-27464093-id-3308003.html 阅读全文
posted @ 2016-05-25 00:58 zengkefu 阅读(4669) 评论(0) 推荐(1) 编辑
摘要:http://akaptur.com/blog/2014/08/03/getting-started-with-python-internals/ 阅读全文
posted @ 2016-05-25 00:56 zengkefu 阅读(165) 评论(0) 推荐(0) 编辑
摘要:http://www.dba-china.com/topic/211 阅读全文
posted @ 2016-05-25 00:55 zengkefu 阅读(194) 评论(0) 推荐(0) 编辑
摘要:http://blog.jobbole.com/100349/ 阅读全文
posted @ 2016-05-25 00:54 zengkefu 阅读(136) 评论(0) 推荐(0) 编辑
摘要:https://github.com/noodba http://www.noodba.com 阅读全文
posted @ 2016-05-25 00:52 zengkefu 阅读(307) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/liantian_wu/article/details/49797481 阅读全文
posted @ 2016-05-25 00:47 zengkefu 阅读(303) 评论(0) 推荐(0) 编辑
摘要:http://search.cpan.org/~chrisa/Devel-DTrace-Provider-1.11/lib/Devel/DTrace/Provider.pm 阅读全文
posted @ 2016-05-25 00:45 zengkefu 阅读(86) 评论(0) 推荐(0) 编辑
摘要:http://bbs.chinaunix.net/forum-viewthread-tid-570031.html 阅读全文
posted @ 2016-05-25 00:40 zengkefu 阅读(140) 评论(0) 推荐(0) 编辑
摘要:操作系统像还原 阅读全文
posted @ 2016-05-25 00:38 zengkefu 阅读(138) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/sodino/article/details/51318565 阅读全文
posted @ 2016-05-25 00:34 zengkefu 阅读(108) 评论(0) 推荐(0) 编辑
摘要:http://www.ibm.com/developerworks/cn/linux/sdk/perl/culture-4/index.html 阅读全文
posted @ 2016-05-25 00:30 zengkefu 阅读(234) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/ohmygirl/article/category/1188651 http://blog.csdn.net/zhangweijiqn/article/details/39235169 阅读全文
posted @ 2016-05-25 00:26 zengkefu 阅读(124) 评论(0) 推荐(0) 编辑
摘要:http://www.wuzesheng.com/?p=2665 http://www.tuicool.com/articles/NNra6z 阅读全文
posted @ 2016-05-25 00:21 zengkefu 阅读(133) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/balabalamerobert/article/details/570758 阅读全文
posted @ 2016-05-25 00:15 zengkefu 阅读(185) 评论(0) 推荐(0) 编辑
摘要:【问底】王帅:深入PHP内核(三)——内核利器哈希表与哈希碰撞攻击 【问底】王帅:深入PHP内核(二)——SAPI探究 【问底】王帅:深入PHP内核(一)——弱类型变量原理探究 【问底】王帅:深入PHP内核(三)——内核利器哈希表与哈希碰撞攻击 【问底】王帅:深入PHP内核(二)——SAPI探究 【 阅读全文
posted @ 2016-05-25 00:12 zengkefu 阅读(214) 评论(0) 推荐(0) 编辑
摘要:http://perldoc.perl.org/perldtrace.html 阅读全文
posted @ 2016-05-25 00:06 zengkefu 阅读(131) 评论(0) 推荐(0) 编辑
摘要:垃圾回收算法手册:自动内存管理的艺术 2016-03-18 华章计算机 内容简介 PROSPECTUS 本书是自动内存管理领域的里程碑作品,汇集了这个领域里经过50多年的研究沉积下来的最佳实践,包含当代最重要的垃圾回收策略与技术,著译双馨。 几乎所有的现代编程语言都采用了垃圾回收机制,因此深入了解此 阅读全文
posted @ 2016-05-25 00:05 zengkefu 阅读(888) 评论(0) 推荐(1) 编辑
摘要:http://blog.csdn.net/ohmygirl/article/details/41542445 http://www.laruence.com/2008/09/19/520.html 阅读全文
posted @ 2016-05-25 00:03 zengkefu 阅读(139) 评论(0) 推荐(0) 编辑
摘要:http://blog.donews.com/lemur/archive/category/cpython%E6%BA%90%E7%A0%81%E5%89%96%E6%9E%90/ 阅读全文
posted @ 2016-05-25 00:00 zengkefu 阅读(238) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/CBDoctor/p/3781078.html http://www.cnblogs.com/vamei/p/3232088.html http://blog.csdn.net/zhzhl202/article/details/7547445 阅读全文
posted @ 2016-05-24 23:53 zengkefu 阅读(354) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/yrpen/p/3777963.html http://www.cnblogs.com/hustcat/archive/2011/10/27/2226995.html http://www.cnblogs.com/hustcat/archive/2011 阅读全文
posted @ 2016-05-24 23:43 zengkefu 阅读(275) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/fudan_abc/article/details/5738436 阅读全文
posted @ 2016-05-24 23:42 zengkefu 阅读(224) 评论(0) 推荐(0) 编辑
摘要:http://macshuo.com/?page_id=93 阅读全文
posted @ 2016-05-24 23:32 zengkefu 阅读(209) 评论(0) 推荐(0) 编辑
摘要:http://openresty.org/cn/presentations.html http://weibo.com/agentzh?is_all=1 http://openresty.org/posts/dynamic-tracing/ 动态追踪技术(中) - Dtrace、SystemTap、 阅读全文
posted @ 2016-05-24 23:26 zengkefu 阅读(1585) 评论(1) 推荐(0) 编辑
摘要:https://yq.aliyun.com/articles/2237?spm=5176.blog2238.yqblogcon1.7.e5fyEy#index_section 阅读全文
posted @ 2016-05-24 23:20 zengkefu 阅读(889) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示