method

cache_control_segments

cache_control_segments()
private

No documentation available.

# File actionpack/lib/action_dispatch/http/cache.rb, line 97
        def cache_control_segments
          if cache_control = self[CACHE_CONTROL]
            cache_control.delete(' ').split(',')
          else
            []
          end
        end