The ASP.NET Bundling and Minification tutorial states:
The query string v has a value token that is a unique identifier used for caching. As long as the bundle doesn't change, the ASP.NET application will request the AllMyScripts bundle using this token. If any file in the bundle changes, the ASP.NET optimization framework will generate a new token, guaranteeing that browser requests for the bundle will get the latest bundle.
How does this work on a web server farm?
If I update a javascript file included in a bundle, will the new query string be the same across my web farm?