ennru / cachecontrol

Minimal HTTP cache management library in Scala

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CacheControl

Build Status Maven

This is a minimal library that provides a set of utility calculators that abstract away much of the fiddly complexities involved in adhering to the HTTP caching model, aka RFC 7234. The core idea is abstracting the decision about what to cache and when, following the example of Caching is Hard, Draw Me A Picture.

It does not implement caching itself, and there are some aspects of RFC 7234 which must be implemented directly, such as stripping headers, invalidating unsafe methods, and implementing the Vary header functionality correctly.

Deployment

To add this project to sbt, use:

libraryDependencies += "com.typesafe.play" %% "cachecontrol" % "1.1.6"

License

This software is licensed under the Apache 2 license, quoted below.

Copyright (C) Lightbend Inc. https://www.lightbend.com.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Minimal HTTP cache management library in Scala


Languages

Language:Scala 100.0%