Reputation: 33
Rails automatically adds etag to all responses. How can I change this behaviour? I found some examples for rails 2.x, but it doesn't work.
Upvotes: 3
Views: 1270
Reputation: 5714
You could disable caching in your config/environments/*.rb files with:
config.action_controller.perform_caching = false
ian.
Upvotes: 2