<div dir="ltr"><div>I have a question about "hash $cachekey" consistent;</div><div>Would the following Config 1, Config 2, Config 3 be exactly the same of different?</div><div>i.e. if I swap the configurations would the cache keys stay consistent?</div><div>The reason I am asking is I have a large configuration similar to Config 2 and am not sure it would be "safe" to clean up the order and merge duplicates as weighted config values.</div><div><br></div><div>Thank you.</div><div><br></div><div>Would the following be different of the same?</div><div>Config 1:</div><div>upstream ImageCluster  {</div><div>  server 10.1.1.1;</div><div>  server 10.1.1.1;</div><div>  server 10.1.1.2;</div><div>  server 10.1.1.2;</div><div>  server 10.1.1.3;</div><div>  server 10.1.1.3;</div><div><br></div><div>  hash $cachekey consistent;</div><div>}</div><div><br></div><div>Config 2:</div><div>upstream ImageCluster  {</div><div>  server 10.1.1.2;</div><div>  server 10.1.1.2;</div><div>  server 10.1.1.1;</div><div>  server 10.1.1.1;</div><div>  server 10.1.1.3;</div><div>  server 10.1.1.3;</div><div><br></div><div>  hash $cachekey consistent;</div><div>}</div><div><br></div><div>Config 3:</div><div>upstream ImageCluster  {</div><div>  server 10.1.1.1 weight=2;</div><div>  server 10.1.1.2 weight=2;</div><div>  server 10.1.1.3 weight=2;</div><div><br></div><div>  hash $cachekey consistent;</div><div>}</div></div>