class Protocol::HTTP::Header::Vary
The ‘vary` header is used in HTTP responses to indicate which request headers affect the selected response. It allows caches to differentiate stored responses based on specific request headers.
Represents the `vary` header, which specifies the request headers a server considers when determining the response.
def << value
Adds one or more comma-separated values to the `vary` header. The values are converted to lowercase for normalization.
def << value super(value.downcase) end
def initialize(value)
Initializes a `Vary` header with the given value. The value is split into distinct entries and converted to lowercase for normalization.
def initialize(value) super(value.downcase) end