mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
42 lines
875 B
Go
42 lines
875 B
Go
package asynq
|
|
|
|
import "github.com/go-redis/redis/v7"
|
|
|
|
/*
|
|
TODOs:
|
|
- [P0] Go docs + CONTRIBUTION.md
|
|
- [P1] Add Support for multiple queues and priority
|
|
- [P1] User defined max-retry count
|
|
- [P2] Web UI
|
|
*/
|
|
|
|
// Max retry count by default
|
|
const defaultMaxRetry = 25
|
|
|
|
// Task represents a task to be performed.
|
|
type Task struct {
|
|
// Type indicates the kind of the task to be performed.
|
|
Type string
|
|
|
|
// Payload is an arbitrary data needed for task execution.
|
|
// The value has to be serializable.
|
|
Payload map[string]interface{}
|
|
}
|
|
|
|
// RedisConfig specifies redis configurations.
|
|
type RedisConfig struct {
|
|
Addr string
|
|
Password string
|
|
|
|
// DB specifies which redis database to select.
|
|
DB int
|
|
}
|
|
|
|
func newRedisClient(config *RedisConfig) *redis.Client {
|
|
return redis.NewClient(&redis.Options{
|
|
Addr: config.Addr,
|
|
Password: config.Password,
|
|
DB: config.DB,
|
|
})
|
|
}
|