Class CachingDirectives
java.lang.Object
org.apache.pekko.http.javadsl.server.directives.CachingDirectives
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <K> RouteAdapteralwaysCache(Cache<K, RouteResult> cache, scala.PartialFunction<RequestContext, K> keyer, Supplier<Route> inner) Wraps its inner Route with caching support using the givenCacheimplementation and keyer function.static <K> RouteAdaptercache(Cache<K, RouteResult> cache, scala.PartialFunction<RequestContext, K> keyer, Supplier<Route> inner) Wraps its inner Route with caching support using the givenpekko.http.caching.scaladsl.Cacheimplementation and keyer function.static RouteAdaptercachingProhibited(Supplier<Route> inner) Passes only requests to the inner route that explicitly forbid caching with aCache-Controlheader with either ano-cacheormax-age=0setting.static <K> Cache<K,RouteResult> routeCache(CachingSettings settings) Creates anLfuCache
-
Constructor Details
-
CachingDirectives
public CachingDirectives()
-
-
Method Details
-
cache
public static <K> RouteAdapter cache(Cache<K, RouteResult> cache, scala.PartialFunction<RequestContext, K> keyer, Supplier<Route> inner) Wraps its inner Route with caching support using the givenpekko.http.caching.scaladsl.Cacheimplementation and keyer function.Use
pekko.japi.JavaPartialFunctionto build thekeyer.- Parameters:
cache- (undocumented)keyer- (undocumented)inner- (undocumented)- Returns:
- (undocumented)
-
cachingProhibited
Passes only requests to the inner route that explicitly forbid caching with aCache-Controlheader with either ano-cacheormax-age=0setting.- Parameters:
inner- (undocumented)- Returns:
- (undocumented)
-
alwaysCache
public static <K> RouteAdapter alwaysCache(Cache<K, RouteResult> cache, scala.PartialFunction<RequestContext, K> keyer, Supplier<Route> inner) Wraps its inner Route with caching support using the givenCacheimplementation and keyer function. Note that routes producing streaming responses cannot be wrapped with this directive.- Parameters:
cache- (undocumented)keyer- (undocumented)inner- (undocumented)- Returns:
- (undocumented)
-
routeCache
Creates anLfuCacheDefault settings are available via
pekko.http.caching.javadsl.CachingSettings.create.- Parameters:
settings- (undocumented)- Returns:
- (undocumented)
-