mirror of
https://github.com/hibiken/asynq.git
synced 2026-04-26 07:25:56 +03:00
[GH-ISSUE #919] [FEATURE REQUEST] Support sqlite3 as alternative adaptor to valkey and redis #458
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#458
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 @wakatara on GitHub (Oct 8, 2024).
Original GitHub issue: https://github.com/hibiken/asynq/issues/919
Originally assigned to: @hibiken on GitHub.
Is your feature request related to a problem? Please describe.
Yes, I need a task queue manager but would like to have fewer server dependencies so am hoping to only ise a slqite3 database for my entire app. It would be nice if asynq (which I am loving with valkey btw) could operate in that fashion.
Describe the solution you'd like
Swap out redis for sqlite.
Describe alternatives you've considered
Already used valkey as a drop in replacement but ultimately I'm hoping to have a "run local" approach to this without the need for extra or complex services for the queue.
Additional context
If rails 8 can do it, so should Go... =]
Also, someone has done something similar with sqlite already https://github.com/maragudk/goqite
@kamikazechaser commented on GitHub (Oct 26, 2024):
This library is tightly coupled with the inner workings of redis (lua scripting, commands only found in redis and redis forks). There is a very low chance that existing abstractions over redis could even work.
@wakatara commented on GitHub (Oct 26, 2024):
@kamikazechaser I suspected as much, but you know... never ask, never get. Thanks for entertaining the request though even if it's not possible. =]
@ixugo commented on GitHub (Apr 15, 2025):
try it github.com/ixugo/nsqite ,Use gorm to support database transactions
@wakatara commented on GitHub (Apr 16, 2025):
@ixugo Looks interesting, I'll check it out. Thanks!