Reputation: 4780
I am interested in learning why so many services like Twitter and Facebook name their CDN files the way they do. Looking at http://25.media.tumblr.com/tumblr_m6m6g57NgY1qdhfhho2_1280.jpg I have some observational questions:
Upvotes: 3
Views: 607
Reputation: 1
Upvotes: 0
Reputation: 18832
Browsers have limits to how many parallel requests they can make to a single domain, using multiple sub domains means more parallel requests. See: http://yuiblog.com/blog/2007/04/11/performance-research-part-4/
They might be using the seemingly random filenames for the reason you describe. But more likely they are using that to ensure file name uniqueness and too invalidate cache's if the file changes thereby ensuring that all users are seeing the latest version.
Upvotes: 4