Conversation

Replying to and
I guess you could divide it up into a bunch of different files rather than relying on range requests. However, I'm not sure how well it will handle caching that's so rapidly changing. If it's not cached, I think it will just pass through. I don't think it will merge requests.
1
1
Replying to and
You need the cache to be warmed up by usage. There isn't a way to push something to their CDN. It acts as a caching reverse proxy using their custom nginx fork rather than a traditional CDN that you push to in advance, which I don't think would fit with real-time usage.
1
1
Replying to and
So, from client-side testing, if you do a range request for an uncached file, it ends up pulling the whole file and caching that. It isn't quite what they did before. They still only cache files as a whole, but range requests can pull the whole file from the origin to cache it.
1