mirror of
https://github.com/minio/minio.git
synced 2025-11-26 04:26:12 -05:00
rename object_size -> block_size for cache subsystem (#18694)
This commit is contained in:
8
internal/config/cache/help.go
vendored
8
internal/config/cache/help.go
vendored
@@ -29,19 +29,19 @@ var (
|
||||
config.HelpKV{
|
||||
Key: Enable,
|
||||
Type: "on|off",
|
||||
Description: "set to enable various caching optimizations" + defaultHelpPostfix(Enable),
|
||||
Description: "set to enable remote cache plugin" + defaultHelpPostfix(Enable),
|
||||
Optional: true,
|
||||
},
|
||||
config.HelpKV{
|
||||
Key: Endpoint,
|
||||
Type: "string",
|
||||
Description: "remote endpoint where MinIO will cache GET/HEAD metadata values such as ETag, ModTime" + defaultHelpPostfix(Endpoint),
|
||||
Description: "remote cache endpoint for GET/HEAD object(s) metadata, data" + defaultHelpPostfix(Endpoint),
|
||||
Optional: true,
|
||||
},
|
||||
config.HelpKV{
|
||||
Key: ObjectSize,
|
||||
Key: BlockSize,
|
||||
Type: "string",
|
||||
Description: "maximum object size below which data is cached and fetched remotely from DRAM if possible" + defaultHelpPostfix(ObjectSize),
|
||||
Description: "cache all objects below the specified block size" + defaultHelpPostfix(BlockSize),
|
||||
Optional: true,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user