Hello!
On Wed, Jul 18, 2012 at 7:34 AM, Nero.Ping <kyt...@gmail.com> wrote:
> I have not used openresty, I want to know how to implement comet with
> openresty?
The only missing bit for a comet server atop ngx_openresty is the
lua_ignore_client_abort directive:
lua_ignore_client_abort off;
The current behavior is ways "on" :)
> Is there some template module in openresty?
>
The ngx_openresty bundle does not contain any template libraries. It's
expected to install Lua template libraries yourself, for example, the
lua template processor library:
http://www.savarese.com/software/ltp/
Best regards,
-agentzh