I have a feeds controller that should NEVER return a 304
.
My render call looks like this ( where json_feed_content
is a jsonp string );
render :text => jsonp_feed_content, :content_type => "application/json"
I have set caching to false in my production environment:
config.action_controller.perform_caching = false
I have a client script that constantly polls content from this feed, but most of the requests return 304
[Content Not Changed]. Is there a way to prevent my rails application from doing this?