Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use recyclable cache keys (#29092) | David Heinemeier Hansson | 2017-05-18 | 1 | -7/+28 |
| | |||||
* | Unfreeze interpolated string because it's useless. | Stan Lo | 2017-02-19 | 1 | -1/+1 |
| | |||||
* | Freeze fragment cache related instrument name. | Stan Lo | 2017-02-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | ActionMailer::Base#instrument_name and ActionController::Base#instrument_name will be frequently called once caching is enabled. So it's better to freeze them instead of create new string on every call. Also, the instrument name in #instrument_fragment_cache will usually be "write_fragment.action_controller" or "read_fragment.action_controller". So freezing them might also gain some performance improvement. We have done something like this in other places: https://github.com/rails/rails/blob/master/actionview/lib/action_view/template.rb#L348 | ||||
* | Add three new rubocop rules | Rafael Mendonça França | 2016-08-16 | 1 | -1/+1 |
| | | | | | | | | Style/SpaceBeforeBlockBraces Style/SpaceInsideBlockBraces Style/SpaceInsideHashLiteralBraces Fix all violations in the repository. | ||||
* | Move Caching module to Abstract Controller | Rafael Mendonça França | 2016-02-23 | 1 | -0/+143 |
Abstract Controller is the common component between Action Mailer and Action Controller so if we need to share the caching component it need to be there. |