mirror of
				https://github.com/minio/minio.git
				synced 2025-10-31 00:01:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) 2015-2021 MinIO, Inc.
 | |
| //
 | |
| // This file is part of MinIO Object Storage stack
 | |
| //
 | |
| // This program is free software: you can redistribute it and/or modify
 | |
| // it under the terms of the GNU Affero General Public License as published by
 | |
| // the Free Software Foundation, either version 3 of the License, or
 | |
| // (at your option) any later version.
 | |
| //
 | |
| // This program is distributed in the hope that it will be useful
 | |
| // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| // GNU Affero General Public License for more details.
 | |
| //
 | |
| // You should have received a copy of the GNU Affero General Public License
 | |
| // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
| package cache
 | |
| 
 | |
| import "github.com/minio/minio/cmd/config"
 | |
| 
 | |
| // Help template for caching feature.
 | |
| var (
 | |
| 	Help = config.HelpKVS{
 | |
| 		config.HelpKV{
 | |
| 			Key:         Drives,
 | |
| 			Description: `comma separated mountpoints e.g. "/optane1,/optane2"`,
 | |
| 			Type:        "csv",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         Expiry,
 | |
| 			Description: `cache expiry duration in days e.g. "90"`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "number",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         Quota,
 | |
| 			Description: `limit cache drive usage in percentage e.g. "90"`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "number",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         Exclude,
 | |
| 			Description: `exclude cache for following patterns e.g. "bucket/*.tmp,*.exe"`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "csv",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         After,
 | |
| 			Description: `minimum number of access before caching an object`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "number",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         WatermarkLow,
 | |
| 			Description: `% of cache use at which to stop cache eviction`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "number",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         WatermarkHigh,
 | |
| 			Description: `% of cache use at which to start cache eviction`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "number",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         Range,
 | |
| 			Description: `set to "on" or "off" caching of independent range requests per object, defaults to "on"`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "string",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         Commit,
 | |
| 			Description: `set to control cache commit behavior, defaults to "writethrough"`,
 | |
| 			Optional:    true,
 | |
| 			Type:        "string",
 | |
| 		},
 | |
| 		config.HelpKV{
 | |
| 			Key:         config.Comment,
 | |
| 			Description: config.DefaultComment,
 | |
| 			Optional:    true,
 | |
| 			Type:        "sentence",
 | |
| 		},
 | |
| 	}
 | |
| )
 |