diff --git a/internal/web/actions/default/servers/components/cache/createPopup.go b/internal/web/actions/default/servers/components/cache/createPopup.go index ec26f4f9..ba9bf7a6 100644 --- a/internal/web/actions/default/servers/components/cache/createPopup.go +++ b/internal/web/actions/default/servers/components/cache/createPopup.go @@ -36,7 +36,6 @@ func (this *CreatePopupAction) RunPost(params struct { CapacityJSON []byte MaxSizeJSON []byte - MaxKeys int64 SyncCompressionCache bool Description string @@ -97,7 +96,6 @@ func (this *CreatePopupAction) RunPost(params struct { Name: params.Name, Description: params.Description, CapacityJSON: params.CapacityJSON, - MaxKeys: params.MaxKeys, MaxSizeJSON: params.MaxSizeJSON, Type: params.Type, OptionsJSON: optionsJSON, diff --git a/internal/web/actions/default/servers/components/cache/update.go b/internal/web/actions/default/servers/components/cache/update.go index 6cf5e995..9a3a641c 100644 --- a/internal/web/actions/default/servers/components/cache/update.go +++ b/internal/web/actions/default/servers/components/cache/update.go @@ -60,7 +60,6 @@ func (this *UpdateAction) RunPost(params struct { CapacityJSON []byte MaxSizeJSON []byte - MaxKeys int64 SyncCompressionCache bool Description string @@ -143,7 +142,6 @@ func (this *UpdateAction) RunPost(params struct { Name: params.Name, Description: params.Description, CapacityJSON: params.CapacityJSON, - MaxKeys: params.MaxKeys, MaxSizeJSON: params.MaxSizeJSON, Type: params.Type, OptionsJSON: optionsJSON, diff --git a/web/views/@default/servers/components/cache/createPopup.html b/web/views/@default/servers/components/cache/createPopup.html index 1d7673f1..74d62dd2 100644 --- a/web/views/@default/servers/components/cache/createPopup.html +++ b/web/views/@default/servers/components/cache/createPopup.html @@ -77,13 +77,6 @@ - - 容纳Key数量 - - -

可以容纳多少数量的Key,0表示不限制。

- - 同步写入压缩缓存 diff --git a/web/views/@default/servers/components/cache/policy.html b/web/views/@default/servers/components/cache/policy.html index fe9c343e..bdf4b6cd 100644 --- a/web/views/@default/servers/components/cache/policy.html +++ b/web/views/@default/servers/components/cache/policy.html @@ -72,14 +72,6 @@

允许缓存的单个内容最大尺寸,如果为0表示没有限制。

- - 容纳Key数量 - - {{cachePolicy.maxKeys}} - 不限 -

可以容纳多少数量的Key,0表示不限制。

- - 同步写入压缩缓存 diff --git a/web/views/@default/servers/components/cache/update.html b/web/views/@default/servers/components/cache/update.html index 32672d49..26643375 100644 --- a/web/views/@default/servers/components/cache/update.html +++ b/web/views/@default/servers/components/cache/update.html @@ -84,13 +84,6 @@ - - 容纳Key数量 - - -

可以容纳多少数量的Key,0表示不限制。

- - 同步写入压缩缓存