[squid-users] Vary object loop returns

Yuri Voinov yvoinov at gmail.com
Sun Jun 5 18:17:48 UTC 2016


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
 
Properly formatted patch.


05.06.2016 22:28, joe пишет:
> Quotation marks fix
>
> --- src/client_side.cc    2016-05-25 02:27:13.000000000 +0300
> +++ src/client_side.cc    2016-06-05 19:04:07.000000000 +0300
> @@ -140,7 +140,7 @@
>  #if LINGERING_CLOSE
>  #define comm_close comm_lingering_close
>  #endif
> -
> +#include <regex>
>  /// dials clientListenerConnectionOpened call
>  class ListeningStartedDialer: public CallDialer, public
> Ipc::StartListeningCb
>  {
> @@ -4738,6 +4738,23 @@
>              if (!vary.isEmpty())
>                  request->vary_headers = vary;
>          }
> +        /* new test in vary header there is unwanted mark deed code
wish is
> marked with %20 tell the browser not to use */
> +        /* and its affecting the cache for cache hit %   if you use 2
> browser example Firefox and chrome and load object */
> +        /* that has vary --> accept-encoding="gzip,%20deflate,%20sdch */
> +        /* second browser use the same object link and has different
> accept-encoding="gzip,%20deflate" */
> +        /* as you notice they do not match so result miss and it
delete the
> previous object from the cache */
> +        /* the new code should filter out those marked with %20 the
> different is really big in % hit */
> +        if (!vary.isEmpty()) {
> +            std::regex e ("\\b(,%20)(.*)([,\"]$)"); 
> +            std::string str1 = std::regex_replace
(vary.c_str(),e,"")+"\"";
> +            if (str1.find("\"\"") != std::string::npos) {
> +               str1.erase(str1.begin() + str1.size() - 1);
> +               vary=SBuf(str1);
> +            } else {
> +               vary=SBuf(str1);
> +            }
> +             return VARY_MATCH;
> +        }
> 
>          if (vary.isEmpty()) {
>              /* Ouch.. we cannot handle this kind of variance */
>
>
>
> --
> View this message in context:
http://squid-web-proxy-cache.1019090.n4.nabble.com/Vary-object-loop-returns-tp4677716p4677818.html
> Sent from the Squid - Users mailing list archive at Nabble.com.
> _______________________________________________
> squid-users mailing list
> squid-users at lists.squid-cache.org
> http://lists.squid-cache.org/listinfo/squid-users

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
 
iQEcBAEBCAAGBQJXVGzMAAoJENNXIZxhPexGji0H/2h991uHwX/wweYc7rgeqGwk
hT53tn0WrNWZxp2DKXT14Hq4m8HEbuP9KPLedEwbqDx/sXZOf/Flw9CxSEMLB16T
+SjMxCSDa9je6/3ego5aAg26jRwfebO6VD+BdOQs+ZYVb/RWcONCWZyhJbfuR5ik
PSwr8ar8tkpsolyCAPwdvnjEuFvnuESxfGVMdQCzDJEo8CUFrp3JaOK2TMsNG3a/
6z4QJ0SFJiRKq7fmkrV8Z4I2uaPE6I21KX4k9eYglz1771+CiegCjp/BslqBovuv
Bj0B+Pz98+6wC9eMguVviFqT2Huc16V8QWOwLfzkq+it/cYGnOKuSKh9L6dmGf0=
=gIpI
-----END PGP SIGNATURE-----

-------------- next part --------------
A non-text attachment was scrubbed...
Name: vary_experimental2.patch
Type: text/x-patch
Size: 1670 bytes
Desc: not available
URL: <http://lists.squid-cache.org/pipermail/squid-users/attachments/20160606/5e6a018b/attachment.bin>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0x613DEC46.asc
Type: application/pgp-keys
Size: 2437 bytes
Desc: not available
URL: <http://lists.squid-cache.org/pipermail/squid-users/attachments/20160606/5e6a018b/attachment.key>


More information about the squid-users mailing list