3

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.

Andrey Kuznetsov
  • 11,640
  • 9
  • 47
  • 70
RaHimsiZ
  • 33
  • 4

1 Answers1

2

You could disable caching in your config/environments/*.rb files with:

config.action_controller.perform_caching = false

ian.

ipd
  • 5,674
  • 3
  • 34
  • 49