CompilationCacheParams

@Serializable
data class CompilationCacheParams(val url: String, val eager: Boolean? = null)

Per-script compilation cache parameters for Page.produceCompilationCache

Constructors

Link copied to clipboard
constructor(url: String, eager: Boolean? = null)

Properties

Link copied to clipboard
val eager: Boolean? = null

A hint to the backend whether eager compilation is recommended. (the actual compilation mode used is upon backend discretion).

Link copied to clipboard
val url: String

The URL of the script to produce a compilation cache entry for.