queue/config.go

28 lines
486 B
Go
Raw Normal View History

2021-10-18 07:16:42 +00:00
package queue
// Config ...
type Config struct {
// For message queue
2021-10-18 07:42:07 +00:00
Redis ConfigRedis
2021-10-18 07:16:42 +00:00
// Priority to process task, eg: Critical 6, Default 3, Low 1
// Using for server only
// https://github.com/hibiken/asynq/wiki/Queue-Priority
Concurrency int
2021-10-18 07:42:07 +00:00
Priority ConfigPriority
}
// ConfigRedis ...
type ConfigRedis struct {
URL string
Password string
}
// ConfigPriority ...
type ConfigPriority struct {
Critical int
Default int
Low int
StrictMode bool
2021-10-18 07:16:42 +00:00
}