![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Versatile async database based jobs for rails.
I did this gem to:
Put this line in your Gemfile:
gem 'sidejobs'
Then bundle:
$ bundle
Generate the sidejobs configuration and migration file:
$ bundle exec rails g sidejobs:install
Set the global settings:
Sidejobs.configure do |config|
config.max_attempts = 3
config.sleep_delay = 15
config.batch_size = 20
end
Run the migration to create the sidejobs table:
$ bundle exec rake db:migrate
Assign the sidejobs adapter to the environments:
Rails.application.configure do
config.active_job.queue_adapter = :sidejobs
end
To control the daemon, use the rake tasks:
$ bundle exec rake sidejobs:start
$ bundle exec rake sidejobs:stop
$ bundle exec rake sidejobs:restart
You can deliver mails using deliver_later:
UserMailer.invite('someone@mail.com').deliver_later
Or perform jobs using perform_later:
SendNewsletterJob.perform_later
No admin interface, all is done using Sidejobs::Job model:
Sidejobs::Job.failing.where('attempts > ?', 3).destroy_all
Any issue, pull request, comment of any kind is more than welcome!
I will mainly ensure compatibility to last versions of Ruby, Rails and PostgreSQL.
This gem is maintained and funded by museways.
It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.
FAQs
Unknown package
We found that sidejobs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.