I dig into nginx source code, found that lots of ngx_http_cache.c
code has been commented.
Is it abandoned or… Igor plan to develop it later?
We wanna some features like lighttpd’s mod_cache and squid, but we
found that it is a problem for us to share a
a cache(file system local cache) among nginx workers, any idea?
Does Igor meet some problem on implmenting http cache module?
The mod
proxy_storehttp://wiki.codemongers.com/NginxHttpProxyModule#proxy_storewhich
like a cache module in nginx will be a useful module for you ,though
it has no some rule such as delete files in the time you made.
http://wiki.codemongers.com/NginxHttpProxyModule#proxy_store
2007/11/7, Steve C. [email protected]:
On Wed, Nov 07, 2007 at 01:07:08PM +0800, Steve C. wrote:
I dig into nginx source code, found that lots of ngx_http_cache.c
code has been commented.
Is it abandoned or… Igor plan to develop it later?
Yes, it was abandoned when before nginx went to a production life
in the end of 2003.
We wanna some features like lighttpd’s mod_cache and squid, but we
found that it is a problem for us to share a
a cache(file system local cache) among nginx workers, any idea?
What problems do you mean ?
Does Igor meet some problem on implmenting http cache module?
There are two things I do like in my first implementation:
- busy lock
- and garbage collection
so work was ssupended. However, there is big demand of nginx cache
in my company, so I will eventually implement it. I’m going to implement
many features of my Apache module mod_accel:
http://web.archive.org/web/20030610033841/dapi.chaz.ru/articles/plain/en/mod_accel.xml
On Wed, Nov 07, 2007 at 04:16:41PM +0800, chen changliang wrote:
The mod proxy_storehttp://wiki.codemongers.com/NginxHttpProxyModule#proxy_storewhich
like a cache module in nginx will be a useful module for you ,though
it has no some rule such as delete files in the time you made.
http://wiki.codemongers.com/NginxHttpProxyModule#proxy_store
proxy_store is rather mirror on demand.