| 60 | } |
| 61 | |
| 62 | type CacheS struct { |
| 63 | Enable bool `mapstructure:"enable"` |
| 64 | // cache The maximum number of items in |
| 65 | MaxItemsSize int `mapstructure:"max_items_size"` |
| 66 | // cache Kv default expiration time (unit: milliseconds) |
| 67 | DefaultExpiration int `mapstructure:"default_expiration"` |
| 68 | // cache Expired KV cleaning cycle (unit: second) |
| 69 | CleanupInterval int `mapstructure:"cleanup_interval"` |
| 70 | } |
| 71 | |
| 72 | type IgnoreCMDS struct { |
| 73 | Enable bool `mapstructure:"enable" json:"enable"` |
nothing calls this directly
no outgoing calls
no test coverage detected