Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR. Learn more →
Solid_queue Alternatives
Similar projects and alternatives to solid_queue
-
-
Judoscale
Save 47% on cloud hosting with autoscaling that just works. Judoscale integrates with Rails, Sidekiq, Solid Queue, and more to make autoscaling easy and reliable. Save big, and say goodbye to request timeouts and backed-up job queues.
-
-
-
MindsDB
AI's query engine - Platform for building AI that can learn and answer questions over large scale federated data.
-
-
-
-
InfluxDB
InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
-
artillery
The complete load testing platform. Everything you need for production-grade load tests. Serverless & distributed. Load test with Playwright. Load test HTTP APIs, GraphQL, WebSocket, and more. Use any Node.js module.
-
-
server
The Triton Inference Server provides an optimized cloud and edge inferencing solution. (by triton-inference-server)
-
-
-
-
-
-
-
-
-
-
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
solid_queue discussion
solid_queue reviews and mentions
-
Replacing Cron Jobs With Active Jobs in Rails
We have to start by adding the Solid Queue gem to our bundle, installing it, then running the installer to set up the initial config files for our application:
- Solid Queue 101: Processamento em Background no Rails 8.
-
What's New in Ruby on Rails 8
With Rails 8, you can handle all these with just SQLite, thanks to three new database-backed adapters: Solid Cable, Solid Cache, and Solid Queue.
-
Ask HN: I'm interested in something similar to Rails' Solid Queue for Go
I'm seeking alternatives for my current queue system, which uses Golang and Redis. I'm interested in something similar to Rails' Solid Queue (https://github.com/rails/solid_queue).
During my search, I came across River (https://riverqueue.com).
Has anyone here used River in a production environment? I'd appreciate any feedback or experiences.
-
Show HN: PgQueuer – Transform Your PostgreSQL into a Powerful Job Queue
There’s also the new built in SolidQueue.
https://github.com/rails/solid_queue/
-
solid_queue alternatives - Sidekiq and good_job
3 projects | 21 Apr 2024
-
How Rails Powers PopaDex for Simplified Financial Planning
One of the key challenges in any applications is managing long-running tasks without affecting the user experience. PopaDex leverages the solid_queue gem to handle background processing efficiently. This "DB-based queuing backend for Active Job" allows for tasks such as report generation and notifications to be processed in the background, ensuring the application remains responsive. The beauty of solid_queue lies in its simplicity and efficiency, obviating the need for more complex solutions like Redis or Sidekiq for background job management. This choice offers several distinct advantages:
-
Tuning Rails application structure
Once we are done with default gems, should we look into something we usually use? That's jwt because we need session tokens for our API. Next comes our one and only sidekiq. For a long period of time it was the best in town solution for background jobs. Now we could also consider solid_queue or good_job. In development and testing groups we need rspec-rails, factory_bot_rails and ffaker. Dealing with money? Start doing it properly from the beginning! Do not forget to install money-rails. Once everything is added to the Gemfile do not forget to trigger bundle install.
-
Ruby on Rails load testing habits
Rails isn't super opinionated about database writes, its mostly left up to developers to discover that for relational DBs you do not want to be doing a bunch of small writes all at once.
That said it specifically has tools to address this that started appearing a few years ago https://github.com/rails/rails/pull/35077
The way my team handles it is to stick Kafka in between whats generating the records (for us, a bunch of web scraping workers) and and a consumer that pulls off the Kafka queue and runs an insert when its internal buffer reaches around 50k rows.
Rails is also looking to add some more direct background type work with https://github.com/basecamp/solid_queue but this is still very new - most larger Rails shops are going to be running a second system and a gem called Sidekiq that pulls jobs out of Redis.
- FLaNK Weekly 08 Jan 2024
-
A note from our sponsor - CodeRabbit
coderabbit.ai | 20 Apr 2025
Stats
rails/solid_queue is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of solid_queue is Ruby.