Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-16 Thread Raphaël
On Wed, Aug 10, 2016 at 07:13:05PM +0200, Yann Ylavic wrote: > On Wed, Aug 10, 2016 at 5:12 PM, Raphaël wrote: > > On Tue, Aug 09, 2016 at 01:03:33AM -0600, Anthony Biacco wrote: > >> Is there any way i can rewrite the query string so that only the modified > >> query string is used to create the

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-10 Thread Anthony Biacco
On Wed, Aug 10, 2016 at 11:13 AM, Yann Ylavic wrote: > On Wed, Aug 10, 2016 at 5:12 PM, Raphaël wrote: > > On Tue, Aug 09, 2016 at 01:03:33AM -0600, Anthony Biacco wrote: > >> Is there any way i can rewrite the query string so that only the > modified > >> query string is used to create the cach

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-10 Thread Anthony Biacco
On Wed, Aug 10, 2016 at 11:13 AM, Yann Ylavic wrote: > On Wed, Aug 10, 2016 at 5:12 PM, Raphaël wrote: > > On Tue, Aug 09, 2016 at 01:03:33AM -0600, Anthony Biacco wrote: > >> Is there any way i can rewrite the query string so that only the > modified > >> query string is used to create the cach

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-10 Thread Yann Ylavic
On Wed, Aug 10, 2016 at 5:12 PM, Raphaël wrote: > On Tue, Aug 09, 2016 at 01:03:33AM -0600, Anthony Biacco wrote: >> Is there any way i can rewrite the query string so that only the modified >> query string is used to create the cache files? > > https://bz.apache.org/bugzilla/show_bug.cgi?id=21935

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-10 Thread Raphaël
On Tue, Aug 09, 2016 at 01:03:33AM -0600, Anthony Biacco wrote: > Is there any way i can rewrite the query string so that only the modified > query string is used to create the cache files? https://bz.apache.org/bugzilla/show_bug.cgi?id=21935 I was beaten more than once by this issue. I ended up

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-10 Thread Yann Ylavic
On Wed, Aug 10, 2016 at 6:31 AM, Anthony Biacco wrote: > > On Tue, Aug 9, 2016 at 4:47 PM, Eric Covener wrote: >> >> On Tue, Aug 9, 2016 at 3:03 AM, Anthony Biacco wrote: >> > The only way i found so far is to do a redirect in the rewrite rule with >> > [R]. I just don't want the extra overhead

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Anthony Biacco
On Tue, Aug 9, 2016 at 4:47 PM, Eric Covener wrote: > On Tue, Aug 9, 2016 at 3:03 AM, Anthony Biacco wrote: > > The only way i found so far is to do a redirect in the rewrite rule with > > [R]. I just don't want the extra overhead that goes along with that. > > > maybe [PT] + what Yann suggested

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Eric Covener
On Tue, Aug 9, 2016 at 3:03 AM, Anthony Biacco wrote: > The only way i found so far is to do a redirect in the rewrite rule with > [R]. I just don't want the extra overhead that goes along with that. maybe [PT] + what Yann suggested. -- Eric Covener cove...@gmail.com -

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Yann Ylavic
On Tue, Aug 9, 2016 at 9:03 AM, Anthony Biacco wrote: > > Is there any way i can rewrite the query string so that only the modified > query string is used to create the cache files? Maybe you could try to delay mod_cache processing by using: CacheQuickHandler off Regards, Yann. -

[users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Anthony Biacco
I'm using apache 2.4.23 under CentOS. I have requests that are coming into apache that look like: /path?key1=value&key2=value I'm trying to remove the key1 parameter and value from the query string (such that it would be /path?key2=value) I managed to do this with a modified rewrite example form