mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add option to disable Cache Warmer. Related to #2142
This commit is contained in:
parent
dad4949a6d
commit
ee8f6447eb
2 changed files with 3 additions and 1 deletions
|
@ -37,6 +37,7 @@ type configOptions struct {
|
||||||
EnableMediaFileCoverArt bool
|
EnableMediaFileCoverArt bool
|
||||||
TranscodingCacheSize string
|
TranscodingCacheSize string
|
||||||
ImageCacheSize string
|
ImageCacheSize string
|
||||||
|
EnableArtworkPrecache bool
|
||||||
AutoImportPlaylists bool
|
AutoImportPlaylists bool
|
||||||
PlaylistsPath string
|
PlaylistsPath string
|
||||||
AutoTranscodeDownload bool
|
AutoTranscodeDownload bool
|
||||||
|
@ -232,6 +233,7 @@ func init() {
|
||||||
viper.SetDefault("enabletranscodingconfig", false)
|
viper.SetDefault("enabletranscodingconfig", false)
|
||||||
viper.SetDefault("transcodingcachesize", "100MB")
|
viper.SetDefault("transcodingcachesize", "100MB")
|
||||||
viper.SetDefault("imagecachesize", "100MB")
|
viper.SetDefault("imagecachesize", "100MB")
|
||||||
|
viper.SetDefault("enableartworkprecache", true)
|
||||||
viper.SetDefault("autoimportplaylists", true)
|
viper.SetDefault("autoimportplaylists", true)
|
||||||
viper.SetDefault("playlistspath", consts.DefaultPlaylistsPath)
|
viper.SetDefault("playlistspath", consts.DefaultPlaylistsPath)
|
||||||
viper.SetDefault("enabledownloads", true)
|
viper.SetDefault("enabledownloads", true)
|
||||||
|
|
|
@ -23,7 +23,7 @@ type CacheWarmer interface {
|
||||||
|
|
||||||
func NewCacheWarmer(artwork Artwork, cache cache.FileCache) CacheWarmer {
|
func NewCacheWarmer(artwork Artwork, cache cache.FileCache) CacheWarmer {
|
||||||
// If image cache is disabled, return a NOOP implementation
|
// If image cache is disabled, return a NOOP implementation
|
||||||
if conf.Server.ImageCacheSize == "0" {
|
if conf.Server.ImageCacheSize == "0" || !conf.Server.EnableArtworkPrecache {
|
||||||
return &noopCacheWarmer{}
|
return &noopCacheWarmer{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue