All Downloads are FREE. Search and download functionalities are using the official Maven repository.

invirt.http4k.caching.kt Maven / Gradle / Ivy

There is a newer version: 0.10.11
Show newest version
package invirt.http4k

import org.http4k.core.Filter
import org.http4k.filter.CachingFilters
import java.time.Clock
import java.time.Duration

fun cacheDays(days: Int): Filter {
    return CachingFilters.Response.MaxAge(Clock.systemUTC(), Duration.ofDays(days.toLong()))
}

fun cacheOneYear(): Filter = cacheDays(365)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy