When i try to use HttpRedis2Module in Openresty and try to reload my nginx server in Openresty, it occurred an error : "unknown directive "redis2_query" in /usr/local/openresty/nginx/conf/nginx.conf".
Why the directive of "redis2_query" is unknown in Openresty ? My Openresty's Version is 1.13.6.2 .
I sure that my compile configuration doesn't have --without-http_redis2_module.
Here is my nginx.conf partial Configuration :
location /http2redisget {
set $key hello;
redis2_query get $key;
redis2_pass 127.0.0.1:6379;
}
When i try to use HttpRedis2Module in Openresty and try to reload my nginx server in Openresty, it occurred an error : "unknown directive "redis2_query" in /usr/local/openresty/nginx/conf/nginx.conf".
Why the directive of "redis2_query" is unknown in Openresty ? My Openresty's Version is 1.13.6.2 .
I sure that my compile configuration doesn't have --without-http_redis2_module.
Here is my nginx.conf partial Configuration :
location /http2redisget { set $key hello; redis2_query get $key; redis2_pass 127.0.0.1:6379; }