0

ワニスのセットアップでこの n_gunzip を明確にするために、あなたの助けをお願いします。

これらは、いくつかの Web サイトを実行している 1 つのサーバーの私の統計です。

   34837         0.00         0.50 cache_hit - Cache hits
    1022         0.00         0.01 cache_hitpass - Cache hits for pass
    4672         0.00         0.07 cache_miss - Cache misses
    2175          .            .   n_expired - N expired objects
      85         0.00         0.00 n_gzip - Gzip operations
    3512         0.00         0.05 n_gunzip - Gunzip operations

問題は、ガンジップが多く、全ヒットの約 7% であると私が考えていることです。gzip をサポートしていないブラウザーを使用してユーザーが私の Web サイトにアクセスするとは思えないので、なぜ gunzip が発生しているのか理解できません。

VCL でのエンコーディングに関連するものは次のとおりです。

    sub vcl_recv {  
     if (req.http.Accept-Encoding) {
            if (req.http.Accept-Encoding ~ "gzip") {
                # If the browser supports it, we'll use gzip.
                set req.http.Accept-Encoding = "gzip";
            }
            else if (req.http.Accept-Encoding ~ "deflate") {
                # Next, try deflate if it is supported.
                set req.http.Accept-Encoding = "deflate";
            }
            else {
                # Unknown algorithm. Remove it and send unencoded.
                unset req.http.Accept-Encoding;
            }
        }
...

ワニスは正しく動作していますか? これは正常な動作ですか?

4

1 に答える 1