mirror of
https://github.com/hibiken/asynq.git
synced 2026-04-25 23:15:51 +03:00
[GH-ISSUE #45] Change package API to hide redis client library used internally #1027
Labels
No labels
CLI
bug
designing
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
idea
invalid
investigate
needs-more-info
performance
pr-welcome
pull-request
question
wontfix
work in progress
work in progress
work-around-available
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asynq#1027
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hibiken on GitHub (Jan 7, 2020).
Original GitHub issue: https://github.com/hibiken/asynq/issues/45
Originally assigned to: @hibiken on GitHub.
Is your feature request related to a problem? Please describe.
Currently, both
ClientandBackgroundconstructor takesgo-redis/redis/v7as a parameter. This will become an issue when there is a new version or if we want to switch to another redis-client library. The change will require major version update, which we don't want to do just for a redis-client library change.Describe the solution you'd like
We should abstract this away from
asynqpackage users and takeRedisClientOptionas a parameter.Describe alternatives you've considered
None so far.