所以我读了这篇文章:
https://devcenter.heroku.com/articles/rack-cache-memcached-rails31
上面写着:
Heroku recommends using a CDN to speed up delivery of assets for the fastest visitor experience. If you are already using a CDN, then adding Rack::Cache will not speed up delivery of assets. If you do not wish to use a CDN, Rack::Cache is an good way to speed up asset delivery.我想我的问题是,使用任何形式的缓存(除了我们已经使用的CDN之外),比如俄罗斯娃娃缓存,是否真的会加速我们的应用程序?
发布于 2013-10-18 00:49:37
Heroku正在谈论Rack::Cache,它缓存您的资产(图像、js、css等)。通过将片段缓存(缓存不会经常更改的视图的部分)实现为在此概述,您将能够加快应用程序的速度。
https://stackoverflow.com/questions/19439252
复制相似问题