You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 11, 2025. It is now read-only.
Currently for dockerisation there is a severe cold start to run the container.
If possible, it would be ideal to cache to disk the output of this cold starting so that when another session is launched, the server can start immediately.
An interface could be
$> julia
julia> using ReefGuideAPI.jl
julia> ReefGuideAPI.jl.warm() // incurs cold start then closes process
julia> exit()
$> julia
julia> using ReefGuideAPI.jl
julia> ReefGuideAPI.jl.start_server("config/path") // no cold start, uses disk cache
This way we could add a layer to the docker file which pre-builds this cache, decreasing cold start times significantly.
Currently for dockerisation there is a severe cold start to run the container.
If possible, it would be ideal to cache to disk the output of this cold starting so that when another session is launched, the server can start immediately.
An interface could be
This way we could add a layer to the docker file which pre-builds this cache, decreasing cold start times significantly.