`
Poechant
  • 浏览: 212767 次
博客专栏
Bebe66e7-3a30-3fc9-aeea-cfa3b474b591
Nginx高性能Web服务...
浏览量:23519
5738817b-23a1-3a32-86de-632d7da73b1e
Cumulus实时媒体服务...
浏览量:21429
社区版块
存档分类
最新评论
文章列表
Nginx 源码完全剖析(10)ngx_radix_tree 作者:钟超 博客:http://Blog.CSDN.net/Poechant 邮箱:zhongchao.ustc#gmail.com (#->@) 日期:2012年10月12日 ngx_radix_tree.h // 未被使用的节点 #define NGX_RADIX_NO_VALUE (uintptr_t) -1 typedef struct ngx_radix_node_s ngx_radix_node_t; struct ngx_radix_node_s { ngx_radix_node_t *r ...
你发现快要过年了,于是想给你的女朋友买一件毛衣,你打开了www.taobao.com。这时你的浏览器首先查询DNS服务器,将www.taobao.com转换成ip地址。不过首先你会发现,你在不同的地区或者不同的网络(电信、联通、移动)的情况下, ...
Sphinx Introducation: Python Documentation Generator Author: Chao Zhong(钟超) Email: zhongchao.ustc#gmail.com (#->@) Blog:Blog.CSDN.net/Poechant Date: Sep 30, 2012 0 Install Sphinx easy_install -U Sphinx
Nginx源码完全注释(9)nginx.c: ngx_get_options 作者:柳大·Poechant(钟超) 博客:Blog.CSDN.net/Poechant 邮箱:zhongchao.ustc#gmail.com (# -> @) 日期:2012/09/29 本文分析 ngxin.c 中的 ngx_get_options 函数,其影响: nginx.c 中的: static ngx_uint_t ngx_show_help; static ngx_uint_t ngx_show_version; static ngx_uint_t ngx_show_
Nginx源码完全注释(8)ngx_errno.c 作者:柳大·Poechant(钟超) 邮箱:zhongchao.ustc#gmail.com(# -> @) 博客:Blog.CSDN.net/Poechant 日期:2012/09/29 errno.h中的strerror(int errno)可以确定指定的errno的错误的提示信息。在 Nginx 中,将所有错误提示信息预先存储在一个数组里,而预先确定这个数组的大小,是在自动化脚本中完成的,如下是
Nginx源码完全注释(7)ngx_palloc.h/ngx_palloc.c 作者:钟超 邮箱:zhongchao.ustc#gmail.com (# -> @) 博客:Blog.CSDN.net/Poechant 日期:2012年9月28日 ngx_palloc.h /* * NGX_MAX_ALLOC_FROM_POOL should be (ngx_pagesize - 1), i.e. 4095 on x86. * On Windows NT it decreases a number of locked pages in a kernel. */ #define ...
nginx (pronounced "engine x") is a free open source web server written by Igor Sysoev, a Russian software engineer. Since its public launch in 2004, nginx has focused on high performance, high concurrency and low memory usage. Additional features on top of the web server functionality, like ...
Nginx源码完全注释(6)murmurhash 作者:柳大·Poechant(钟超) 邮箱:zhongchao.ustc#gmail.com(# -> @) 博客:Blog.CSDN.net/Poechant 日期:August 18th, 2012 MurmurHash2 was written by Austin Appleby, and is placed in the public domain. The author hereby disclaims copyright to this source code. 下面是摘自 Google Code 的 Murmurhash ...
Nginx源码完全注释(5)core/ngx_cpuinfo.c 作者:柳大·Poechant(钟超) 邮箱:zhongchao.ustc#gmail.com(# -> @) 博客:Blog.CSDN.net/Poechant 日期:August 18th, 2012 /* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #include <ngx_config.h> #include <ngx_core.h> // 如果 CPU 架构是 i386 或 amd64,并且编译器是 ...
Nginx源码完全注释(4)ngx_queue.h / ngx_queue.c 作者:柳大·Poechant(钟超) 邮箱:zhongchao.ustc#gmail.com(# -> @) 博客:Blog.CSDN.net/Poechant 日期:August 17th, 2012 Nginx 中的队列是有头的,头节点和队列中的节点都是 ngx_queue_t。头节点不用于存储数据,数据是从头节点的 next 节点开始存储的。 队列头文件ngx_queue.h
Nginx源码完全注释(3)ngx_list.h / ngx_list.c 作者:柳大·Poechant(钟超) 邮箱:zhongchao.ustc#gmail.com(# -> @) 博客:Blog.CSDN.net/Poechant 日期:August 16th, 2012 列表头文件ngx_list.h #ifndef _NGX_LIST_H_INCLUDE
Nginx源码完全注释(2)ngx_array.h / ngx_array.c 作者:柳大·Poechant(钟超) 邮箱:zhongchao.ustc#gmail.com(# -> @) 博客:Blog.CSDN.net/Poechant 日期:August 15th, 2012 数组头文件ngx_array.h #include <ngx_config.
Introduction to Node.js(2) by Poechant (blog.csdn.net/poechant) 1 How to recognize your Node.js files? Node-js |--- index.js |--- server.js index.js:
Introduction to Node.js(1) by Poechant (blog.csdn.net/poechant) 1 Hello World $ sudo port install nodejs $ echo "console.log(\"Hello World\");" > helloword.js $ node helloworld.js 2 A simple TCP server Create a file named “simple_tcp_server.js”
OpenRTMFP/Cumulus Primer(13)IO管理之局部内存片 Author: 柳大·Poechant(钟超) Email: zhongchao.ustc#gmail.com (#->@) Blog: Blog.CSDN.net/Poechant Date: April 24th, 2012 首先要说的是,该类在 OpenRTMFP/Cumulus 中目前还没有用到 :( 所以您可以关闭您浏览器当前标签,以免浪费时间 :) 在《OpenRTMFP/Cumulus Primer(10)IO 管理之流缓冲区》一文中介绍的 MemoryStreamBuf 时 ...
Global site tag (gtag.js) - Google Analytics