Re: nginx + memcached + gzip

2014-09-04 Thread LinU777
I have checked with curl: curl -I http://static.app1.feeds.lan/uploads/one_feed/1/feed.xml --compressed HTTP/1.1 200 OK Server: nginx/1.6.1 Date: Thu, 04 Sep 2014 14:39:54 GMT Content-Type: text/xml Connection: keep-alive Vary: Accept-Encoding curl -I http://static.app1.feeds.lan/uploads/one_fe

nginx + memcached + gzip

2014-09-04 Thread LinU777
Hello. I have service with memcached for storing large xml data. Data is compressed in memcached. I want to send responce gzipped if client supports that and decompressed if not. But with my config responce goes to client always decompressed. There is my site config: server { listen 80

nginx gunzip memcached data , xss_callback failed

2014-06-10 Thread xinster8192
Hi, I use nginx to read mecached data and write to memcached by java XmemcachedClient . Xmemcached compress data that larger than 256kB before write . So nginx i use ngx_gunzip_module and memcached_gzip_flag to unzip data from mecached to be sure unzip is Ok . the problem is xss_callback_arg is

Re: Memcached

2014-05-17 Thread Yichun Zhang (agentzh)
es" statement. The standard ngx_memcached module only supports the memcached "get" command while ngx_memc supports way more commands like "set", "add", "replace", "append", "prepend", "delete", "incr", "decr&qu

Re: Memcached

2014-05-17 Thread nginxsantos
Thank you. I think agentzh's "memc-nginx-module" module comes with little more features than the default "ngx_http_memcached_module" which Valentin suggested. If I download nginx, I see the "ngx_http_memcached_module". So, it is not a third party module. I will evaluate and see which one to use.

Re: Memcached

2014-05-16 Thread Yichun Zhang (agentzh)
Hello! On Fri, May 16, 2014 at 6:22 AM, nginxsantos wrote: > Have anyone used the thirdparty "memc-nginx-module" module for the memcached > operation. I am interested for a memcached module. So, I am evaluating > which one to use and their differences and the stability. >

Re: Memcached

2014-05-16 Thread Valentin V. Bartenev
On Friday 16 May 2014 09:22:55 nginxsantos wrote: > Hi: > > Have anyone used the thirdparty "memc-nginx-module" module for the memcached > operation. I am interested for a memcached module. So, I am evaluating > which one to use and their differences and the stability

Memcached

2014-05-16 Thread nginxsantos
Hi: Have anyone used the thirdparty "memc-nginx-module" module for the memcached operation. I am interested for a memcached module. So, I am evaluating which one to use and their differences and the stability. I also came across another third party module ngx_http_enhanced_memcac

Re: Using memcached from an Nginx module

2014-02-12 Thread erankor2
Thank you for your reply. But, actually, I am looking for a native C module... Eran Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247481,247483#msg-247483 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/ngi

Re: Using memcached from an Nginx module

2014-02-12 Thread David Birdsong
ch > a module using the http_upstream module as reference, but found that it > takes quite a bit of code to get it done, with lots of edge cases to handle > (like timeouts in each one of the states) > > yeah, use the http://openresty.org/ framework which includes: https://github

Using memcached from an Nginx module

2014-02-12 Thread erankor2
Hi All, I want to develop an Nginx HTTP module that gets several values from memcache, performs some processing on them and returns the result to the client. I want all memcache operations to be performed asynchronously without blocking the worker process for maximum scalability. For this reason,