Keyval#
The module allows the use of variables with values from "key-value" pairs,
which are stored in shared memory or in a Redis store. To work with the module, it must be loaded in the context of Adding and modifying entries in the shared memory zone 'one' is done by
assigning a value to the variable Let's define some values using requests: Let's check: Let's modify the configuration to store "key-value" pairs in a Redis store: Let's add a "key-value" pair to the Redis store via a request: The same can be done using Redis itself: Let's check: A complete description of the directives and the source code is available at:
kjdev/nginx-keyval.Loading the Module#
main{}
:load_module modules/ngx_http_keyval_module.so;
Configuration Example#
keyval_zone zone=one:32k;
keyval $arg_key $value zone=one;
server {
listen 80;
server_name localhost;
location /get {
return 200 "key '$arg_key' has value = '$value'\\n";
}
location /set {
set $value $arg_value;
return 200 "'$arg_key' key added with '$arg_value' value\\n";
}
}
$value
. The key's value
is stored in the variable $arg_key
. In this configuration, this is the
directive set
:set $value $arg_value;
Demonstration#
$ curl "localhost/set/?key=one&value=TextForKeyOne"
'one' key added with 'TextForKeyOne' value
$ curl "localhost/set/?key=two&value=TextForKeyTwo"
'two' key added with 'TextForKeyTwo' value
$ curl "localhost/get/?key=one"
key 'one' has value = 'TextForKeyOne'
$ curl "localhost/get/?key=two"
key 'two' has value = 'TextForKeyTwo'
Using Redis#
keyval_zone_redis zone=oneredis;
keyval $arg_key $value zone=oneredis;
server {
listen 80;
server_name localhost;
location /get {
return 200 "key '$arg_key' has value = '$value'\\n";
}
location /set {
set $value $arg_value;
return 200 "'$arg_key' key added with '$arg_value' value\\n";
}
}
$ curl "localhost/set/?key=one&value=TextForKeyOne"
'one' key added with 'TextForKeyOne' value
$ redis-cli
127.0.0.1:6379> set oneredis:two 'text for key two'
OK
127.0.0.1:6379>
$ redis-cli --scan
"oneredis:one"
"oneredis:two"
$ curl "localhost/get/?key=one"
key 'one' has value = 'TextForKeyOne'
$ curl "localhost/get/?key=two"
key 'two' has value = 'text for key two'
Additional Information#