crowell / modpagespeed_tmp

Automatically exported from code.google.com/p/modpagespeed
Apache License 2.0
0 stars 0 forks source link

Support random dropping of expensive rewrites #719

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Image rewrites are CPU intensive.  For some large sites with many images, some 
images are frequently fetched while the majority of images are infrequently 
fetched.  Optimizing every image can be wasteful for images that are unlikely 
to be fetched again soon.  

Keeping track of frequency counts for every image is a memory and complexity 
burden.  Instead, we should support random drops of image rewrites, which is 
stateless.  For instance, if 90% of image rewrites are dropped, then there is a 
10% chance of optimizing an image fetched only once, but a 99% chance of 
optimizing an image fetched 50 times. 

Original issue reported on code.google.com by jkar...@google.com on 5 Jun 2013 at 1:19

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
A new option, ModPagespeedRewriteRandomDropPercentage has been added.  

A value of 100 means that all image/CSS rewrites are dropped and a value of 50 
means that half of them are.  All images within an optimized CSS file will be 
optimized to prevent partial CSS rewrites.

This feature will be available in the next release.

Original comment by jkar...@google.com on 11 Jun 2013 at 5:11

GoogleCodeExporter commented 9 years ago

Original comment by jkar...@google.com on 13 Jun 2013 at 1:32