beanstalkd-nginx-module
beanstalkd-nginx-module copied to clipboard
./configure --add-module=../../beanstalkd-nginx-module --without-http_rewrite_module checking for OS - Linux 3.13.0-37-generic x86_64 checking for C compiler ... found - using GNU C compiler - gcc version: 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) checking for gcc...
nginx-1.11.3.tar.gz **$ make -j2** /Library/Developer/CommandLineTools/usr/bin/make -f objs/Makefile cc -c -pipe -O -Wall -Wextra -Wpointer-arith -Wconditional-uninitialized -Wno-unused-parameter -Wno-deprecated-declarations -Werror -g -I src/core -I src/event -I src/event/modules -I src/os/unix -I objs \...
I see the command "use" is parsed but cannot get it working. I have tried something like beanstalkd_query use "123"; What would be the correct syntax?
currently, i wanna add the `use` cmd to the module as it is not supported yet, and i have noticed that this module uses Ragel to generate response parsers (in...
the `ngx_http_discard_request_body()` function now is called right after we have checked the only permitted method(i.e. `GET` or `HEAD`), [related code](https://github.com/calio/beanstalkd-nginx-module/blob/master/src/ngx_http_beanstalkd_handler.c#L43) two possibilities may happen here 1. we haven't received the...