I'm viewing the network traffic from my rails application using firebug and I see that the css and javascript files are not being cached. In the page, are things like:
<script src="/javascripts/prototype.js?1315256241" type="text/javascript"></script>
and it appears as if the ?1315256241 causes FF to not cache the item. But the ?1315256241 is a "feature" of Rails that was introduced a few years back. So I'm surprised that it prevents the item from being cached yet no one has asked about it or fixed it.
I've ask this same question on the FF forum and maybe in the Rails forum to no avail. No one seems to understand my question or the point of it. So I thought I would try here.
My question is "does the ?1315256241 suffix (the query) prevent FF from caching the page?"
And if it does, what do most people do in Rails to prevent that?