Enhanced Memcached#
This module extends the capabilities of the built-in Memcached module, allowing you to add and remove "key-value" data on the memcached server. Load the module in the context of Adding a key Retrieving the value of Deleting the data with key Outputting memcached statistics: Clearing all data: Detailed documentation and source code are available at:
bpaquet/ngx_http_enhanced_memcached_moduleLoading the Module#
main{}
:load_module modules/ngx_http_enhanced_memcached_module.so;
Configuration Example#
upstream memcached_upstream {
server 127.0.0.1:11211;
}
server {
listen 80;
server_name localhost;
location / {
set $enhanced_memcached_key "$request_uri";
enhanced_memcached_allow_put on;
enhanced_memcached_allow_delete on;
enhanced_memcached_pass memcached_upstream;
}
location /stats {
enhanced_memcached_stats on;
enhanced_memcached_pass memcached_upstream;
access_log off;
}
location /flush {
enhanced_memcached_flush on;
enhanced_memcached_pass memcached_upstream;
}
}
Examples of Executing Requests#
key1
with the value key1 value
:$ curl -X PUT -d 'key1 value' http://127.0.0.1/key1
STORED
key1
:$ curl http://127.0.0.1/key1
key1 value
key1
:$ curl -X DELETE http://127.0.0.1/key1
DELETED
$ curl http://127.0.0.1/stats
$ curl http://127.0.0.1/flush
Additional Information#