- 浏览: 35397 次
- 性别:
- 来自: 北京
最新评论
-
stoneskin:
标题党。。耸人听闻。
SQL是旧时代的产物。 -
fireflyman:
对mercyblitz的观点深表赞同....LZ这篇东西主要缺 ...
SQL是旧时代的产物。 -
dduoyishan:
不错,
SQL是旧时代的产物。 -
mercyblitz:
张立军 写道mercyblitz 写道呵呵,错了。TV没有取代 ...
SQL是旧时代的产物。 -
张立军:
mercyblitz 写道呵呵,错了。
TV没有取代news ...
SQL是旧时代的产物。
文章列表
代码
<?php
define('PACKAGE','hello');
putenv('LANG=zh_CN');
setlocale(LC_ALL,'zh_CN');
bindtextdomain(PACKAGE,'/var/www/locale');
textdomain(PACKAGE);
echo gettext("Hello World!");
?>
生成po
xgettext -Cd locale/zh_CN/LC_MESSAGES/hello hello.php
...
最近NOSQL风头正劲,这不是没有原因的。
SQL数据库的性能已经无法满足当今世界超大规模的数据处理的需求了。究其原因,是因为SQL是旧时代的产物。在那个旧的时代出生长大,所以必然在现代死亡。
和其他计算机语言来说,SQL查询语言可以算是对最终用户友好的了。它给最终用户一种可能,输入几十个字符,然后迅速获得海量数据的一个有用的子集。所以它真的是对最终用户友好的了。
在旧时代,似乎没有什么程序员做人机接口的事情,他们忙的不亦乐乎的在围绕着数据转。
在现代,用户可以不使用键盘来获得在旧时代需要输入几十个字符所做的事情。他们只需要点击鼠标,拖动滚动条。结果就轻而易举的自 ...
从张宴的http://blog.s135.com/httpsqs/
看到了libevent可以快速实现一个http服务器。后来又从搜搜evhttp的例子。拿ab测了测,速度还不错。比Nginx模块稍慢。
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <err.h>
#include <event.h>
#include <evhttp.h>
void now_handler(struct evh ...
源文件(从Miller的文件修改而来)
/*
* Hash a variable to choose an upstream server.
*
* Copyright (C) Evan Miller
*
* This module can be distributed under the same terms as Nginx itself.
*/
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
ngx ...
这是由前面的一个最简单的例子修改而成的。
前面的例子是从配置文件中读取内容,并显示。
这个例子是从url变量中读取内容并显示。
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
static char* ngx_echo_readconf(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static void* ngx_echo_create_loc_conf(ngx_conf_t *cf ...
不同的模块流程不同这是一个直接从从配置中读取信息,并返回给客户端的例子。
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
static char* ngx_echo_readconf(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static void* ngx_echo_create_loc_conf(ngx_conf_t *cf);
static char* ngx_echo_merge_ ...
这是一个简单的Nginx模块的例子。源码部分从http://www.162cm.com/p/ngx_ext.html得到。原来的config文件有问题。现在我刚刚在nginx-0.7.65nginx-0.8.34编译通过config文件ngx_addon_name=ngx_http_hi_moduleHTTP_MODULES="$HTTP_MODULES ngx_http_hi_module"NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_hi_module.c"nginx.conf配置wor ...
Nginx模块源码 nginx-notice-2
通过Post取文件
Nginx 0.7下可以编译。