docs/Classes/StaticFileServer/CacheOptions.html
public struct CacheOptions
Cache configuration options for StaticFileServer.
`
init(addLastModifiedHeader:maxAgeCacheControlHeader:generateETag:)
`
Initialize a CacheOptions instance.
Swift
public init(addLastModifiedHeader: Bool = true, maxAgeCacheControlHeader: Int = 0,
generateETag: Bool = true)
| addLastModifiedHeader |
an indication whether to set “Last-Modified” header in the response.
|
| maxAgeCacheControlHeader |
a max-age in seconds for “max-age” value in “Cache-Control” header in the response
|
| generateETag |
an indication whether to set “Etag” header in the response.
|