上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 26 下一页
摘要: errno.h中的strerror(int errno)可以确定指定的errno的错误的提示信息。在 Nginx 中,将所有错误提示信息预先存储在一个数组里,而预先确定这个数组的大小,是在自动化脚本中完成的,如下是auto/unix脚本:(其中自动化脚本auto/feature的作用参考《解剖 Ng... 阅读全文
posted @ 2014-10-22 16:33 暗痛 阅读(787) 评论(0) 推荐(0) 编辑
摘要: 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 ke... 阅读全文
posted @ 2014-10-22 16:32 暗痛 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 下面是摘自 Google Code 的 Murmurhash 开源项目主页上的 Murmurhash2,Nginx 就是采用的这个。uint32_t MurmurHash2 ( const void * key, int len, uint32_t seed ){ // 'm' and 'r' a... 阅读全文
posted @ 2014-10-22 16:30 暗痛 阅读(891) 评论(0) 推荐(0) 编辑
摘要: /* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */#include #include // 如果 CPU 架构是 i386 或 amd64,并且编译器是 GNU Compiler 或 Intel Compiler,则定义 cng... 阅读全文
posted @ 2014-10-22 16:28 暗痛 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 队列头文件ngx_queue.h#include #include #ifndef _NGX_QUEUE_H_INCLUDED_#define _NGX_QUEUE_H_INCLUDED_typedef struct ngx_queue_s ngx_queue_t;// 队列的节点,也直接表示队列... 阅读全文
posted @ 2014-10-22 16:27 暗痛 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 列表头文件ngx_list.h#ifndef _NGX_LIST_H_INCLUDED_#define _NGX_LIST_H_INCLUDED_#include #include typedef struct ngx_list_part_s ngx_list_part_t;// 一个 part ... 阅读全文
posted @ 2014-10-22 16:25 暗痛 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 数组头文件ngx_array.h#include #include struct ngx_array_s { void *elts; ngx_uint_t nelts; size_t size; ngx_uint_t nalloc; n... 阅读全文
posted @ 2014-10-22 16:23 暗痛 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 首先看 ngx_alloc.h 文件,主要声明或宏定义了 ngx_alloc,ngx_calloc,ngx_memalign,ngx_free。/* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */#ifndef _NGX_ALLO... 阅读全文
posted @ 2014-10-22 16:21 暗痛 阅读(494) 评论(0) 推荐(0) 编辑
摘要: tencent2012 笔试题附加题问题描述: 例如手机朋友网有n个服务器,为了方便用户的访问会在服务器上缓存数据,因此用户每次访问的时候最好能保持同一台服务器。已有的做法是根据ServerIPIndex[QQNUM%n]得到请求的服务器,这种方法很方便将用户分到不同的服务器上去。但是如果一台服务器... 阅读全文
posted @ 2014-10-14 15:24 暗痛 阅读(1674) 评论(0) 推荐(0) 编辑
摘要: 一、启动与关闭1.1 Linux下启动mysql 的命令:a. rpm包安装:service mysqld startb. 源码包安装:/usr/local/mysql/bin/mysqld_safe --user=mysql &1.2 Linux下重启mysql 的命令:a. rpm包安装:ser... 阅读全文
posted @ 2014-09-25 10:00 暗痛 阅读(260) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 26 下一页