I'm an absolute newbie to Varnish & caching in general, so this question might be trivial to some !
I'm building a web app (in rails), and I was looking at some options to cache content on production servers. I've so far looked at Varnish, and am slightly concerned about the non-caching of with-cookie requests. I understand why such a behaviour is intended, but there is one use-case that could really benefit if there was some way to cache content over cookies.
In my particular case, a lot of urls have data that is same irrespective of the logged-in user. For example, tripadvisor would possibly be returning every logged-in user the same data (at least majority of the data) for a hotel listing. So essentially, although cookies would accompany the request / response, about 90% of the page would be common for each user.
In such scenarios, is it possible to use Varnish to cache such urls / pages (maybe the common part only). And if yes, then how.
Thanks a ton !