package staticcontent
Helpers for serving static content from http4s
Note that these tools are relatively primitive and a dedicated server should be used for serious static content serving.
- Source
- package.scala
- Alphabetic
- By Inheritance
- staticcontent
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
trait
CacheStrategy
extends AnyRef
Cache the body of a Response for future use
Cache the body of a Response for future use
A CacheStrategy acts like a after filter in that it can look at the Response and Uri of the Request and decide if the body for the response has already been cached, needs caching, or to let it pass through.
-
class
MemoryCache
extends CacheStrategy
CacheStrategy that will cache all Response bodies in local memory
CacheStrategy that will cache all Response bodies in local memory
This is useful when serving a very limited amount of static content and want to avoid disk access.
Value Members
-
def
fileService(config: Config): Service[Request, Response]
Make a new org.http4s.HttpService that serves static files.
-
def
resourceService(config: Config): Service[Request, Response]
Make a new org.http4s.HttpService that serves static files, possibly from the classpath.
- object FileService
- object MemoryCache
-
object
NoopCacheStrategy
extends CacheStrategy
Cache strategy that doesn't cache anything, ever.
- object ResourceService