-
**Is your feature request related to a problem? Please describe.**
I have enqueued delayed task
```go
info, err := client.Enqueue(task, asynq.ProcessAt(firstTime), asynq.TaskID(taskID))
```
B…
-
**Describe the bug**
Hello, The bug seems like to be a famous bug with go-redis v8
BUT the problem is that there is no use of go-redis v8 in my project, ONLY go-redis v9
The error happens randomly,…
-
The call stack depth of Infof() and Info() should be the same,otherwise the logger cannot use the same `callerSkip` number to get the file and line number of the code that calls the logger.
Step to…
-
Hello @hibiken ,
Thank you for contributing this great tool library. I'm one of the many users and beneficiaries of asynq, having used it stably in my projects for two years. However, in recent mon…
-
**Is your feature request related to a problem? Please describe.**
I have many different microservices and I want to use 'asynq' across multiple microservices. If 'asynq' is used on multiple microser…
-
When dealing with a very long task, the lease will occasionally expire, resulting in the task being canceled before it is completed, context canceled
**To Reproduce**
taskInfo, err := asynqClient.…
-
考虑 asynq 分布式?
-
For example
```
mux := asynq.NewServeMux()
mux.Handle("sendemail", newHandler())
```
Modified code
```
mux := asynq.NewServeMux()
mux.Handle("sendsms", newHandler())
```
I have reg…
-
**Is your feature request related to a problem? Please describe.**
The asynq queue uses `asynq` as the RedisKey prefix. If my redis has multiple asynq service tasks, all of them will be merged. I h…
-
**Is your feature request related to a problem? Please describe.**
I am attempting to integrate distributed tracing into the task scheduler, but currently, there is no proper way to transfer tracing …