![]() |
Sign Up! | Tags | Domains | Statistics | Options | Advanced Search |
Asset Caching I had talked about this before in the past. Basically, rails allows you to merge your css and javascript files in a single file which is cachable by the browsers. Hence, there’ll only be just one request ( which would return 304 response from 2nd time onwards ) per page, which would result in faster loading time for your visitors. I tend to put these lines in my layouts : 1 2 <%= … Continue Reading »