Yichun Zhang

Results 937 comments of Yichun Zhang

@akharc You should use `proxy_buffering on`. It's known that disabling the proxy buffering can lead to issues in subrequests.

@akharc You should enable the nginx debug logs to find more detailed info, see https://github.com/openresty/srcache-nginx-module/#trouble-shooting

@akharc You failed to enable the nginx debugging logs. None of your messages have the `[debug]` tag (or the `debug` level).

@akharc The offending line is this: ``` 2017/10/12 20:10:22 [debug] 3186#3186: *1 http request empty handler ``` To put it into the context: ``` 2017/10/12 20:10:22 [debug] 3186#3186: *1 http...

@sunnybear Will you provide a minimal and standalone test case so that we can run locally? You can send it to me privately if you prefer.

Nginx variables are not supported (yet) in the pattern arguments. And to make this feature really useful, we'll have to implement an LRU-based compiled regex cache for it as well,...

This is not what I'd expect because by swapping lua-cjson with lua-resty-json in CloudFlare's Lua CDN, the JSON decoding part almost disappears from our online (Lua-land) flame graphs and the...

I ran into this today, too. It seems like the library fails to handle errors returned by the API (like a 429 Too Many Requests response). It definitely needs more...