- 浏览: 229435 次
最新评论
-
Poechant:
zx246212 写道LZ写的好哇,再问个,GC一般选取多少个 ...
JVM 深入笔记(3)垃圾标记算法 -
zx246212:
LZ写的好哇,再问个,GC一般选取多少个基类呢?如果一个大的项 ...
JVM 深入笔记(3)垃圾标记算法 -
yljf1314:
高性能Web服务器Nginx的配置与部署研究(1)Nginx简介及入门示例
文章列表
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 ...
- 2012-10-12 03:42
- 浏览 972
- 评论(0)
你发现快要过年了,于是想给你的女朋友买一件毛衣,你打开了www.taobao.com。这时你的浏览器首先查询DNS服务器,将www.taobao.com转换成ip地址。不过首先你会发现,你在不同的地区或者不同的网络(电信、联通、移动)的情况下, ...
- 2012-10-01 00:45
- 浏览 600
- 评论(0)
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
- 2012-09-30 01:41
- 浏览 394
- 评论(0)
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_
- 2012-09-29 15:33
- 浏览 330
- 评论(0)
Nginx源码完全注释(8)ngx_errno.c
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:2012/09/29
errno.h中的strerror(int errno)可以确定指定的errno的错误的提示信息。在 Nginx 中,将所有错误提示信息预先存储在一个数组里,而预先确定这个数组的大小,是在自动化脚本中完成的,如下是
- 2012-09-29 14:58
- 浏览 468
- 评论(0)
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 ...
- 2012-09-28 22:53
- 浏览 649
- 评论(0)
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 ...
- 2012-09-26 02:20
- 浏览 775
- 评论(0)
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 ...
- 2012-09-09 20:27
- 浏览 986
- 评论(0)
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,并且编译器是 ...
- 2012-09-09 14:00
- 浏览 722
- 评论(0)
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
- 2012-09-09 13:58
- 浏览 633
- 评论(0)
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
- 2012-09-09 13:57
- 浏览 518
- 评论(0)
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.
- 2012-09-09 13:56
- 浏览 526
- 评论(0)
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:
- 2012-09-02 13:06
- 浏览 424
- 评论(0)
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”
- 2012-09-02 12:45
- 浏览 388
- 评论(0)
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 时 ...