queue/config.go

21 lines
386 B
Go
Raw Normal View History

2021-10-18 07:16:42 +00:00
package queue
// Config ...
type Config struct {
// For message queue
Redis struct {
URL string
Password string
}
// 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
Priority struct {
Critical int
Default int
Low int
StrictMode bool
}
}