Is it possible to register events with nginx's event loop?
I want a web server based on nginx, which receives a HTTP message, parses it and checks in Redis for a given key's value and send back a response, all this has to be done asynchronously / non-blocking...
View ArticleRe: Is it possible to register events with nginx's event loop?
See here https://github.com/chaoslawful/lua-nginx-modulemost if not all already done.
View ArticleRe: Is it possible to register events with nginx's event loop?
thanks, i have gone through that repo before. Its very hard to understand what is written there, do you have any tutorials on them ?
View ArticleRe: Is it possible to register events with nginx's event loop?
You can read the forum here https://groups.google.com/forum/#!forum/openresty-enor download all the stuff of my site in sig. and look through the Lua examples, especially the /conf/eblb folder.
View ArticleRe: Is it possible to register events with nginx's event loop?
"download all the stuff of my site in sig", what is sig ? and where is the /conf/eblb folder ?
View ArticleRe: Is it possible to register events with nginx's event loop?
Here http://nginx-win.ecsds.eu/
View ArticleRe: Is it possible to register events with nginx's event loop?
I'm also interested in this subject, but my problem is little bit different. What I want is to post event from other thread to nginx main thread, something like ngx_add_timer but without time option,...
View ArticleRe: Is it possible to register events with nginx's event loop?
melwin_jose Wrote:-------------------------------------------------------> I want a web server based on nginx, which receives a HTTP message,> parses it and checks in Redis for a given key's...
View Article