On Jan 15, 2013, at 5:35 AM, Nick Kew wrote:
>
> Thanks. Yes, that was of course the problem.
>
> I guess control of my ordering relative to other modules isn't available?
>
Nick,
FWIW, we write most of our nginx modules as Lua modules now. Sometimes almost
all of the module is actually in
If you need that type of logic look into using Lua or Perl, IMO.
___
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel
On Tue, Jan 22, 2013 at 1:17 PM, Maxim Dounin wrote:
> In
> particular, with quick look through sources I don't see any
> interface to store data with size not known in advance, which
> happens often in HTTP world.
Would this help? from the docs:
"'Add transaction' support allows constructing obj
in ngx_http_not_modified_header_filter
if (r->headers_out.status != NGX_HTTP_OK
|| r != r->main
|| r->headers_out.last_modified_time == -1)
{
So, it only checks if-match or if-none-match if last-modified is set.
Is this on purpose? I'm just wondering if we want to be able to
On Mon, Mar 11, 2013 at 1:40 PM, Maxim Dounin wrote:
> Changing the code to work with ETag from cache without
> Last-Modified being present in a cached response should be
> possible, but it will require some additional changes.
In my case, the modified time changes although the content doesn't
ac
I use protobufs in nginx via Lua. An example:
https://github.com/bakins/lua-resty-riak
Easy and speedy.
___
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel