gresrun / jesque

An implementation of Resque in Java.
http://gresrun.github.io/jesque
Apache License 2.0
630 stars 131 forks source link

Empty namespace #65

Closed dwilkie closed 9 years ago

dwilkie commented 9 years ago

In the current implementation a namespace is required. By default it's set to resque but it cannot be set to an empty string or nil.

Sidekiq by default uses no namespace so to get this to work with Sidekiq you have to set a namespace so that the namespaces from jesque and Sidekiq match up. See also http://stackoverflow.com/questions/21974356/how-to-enqueue-a-job-in-sidekiq-with-java-or-scala

It would be nice if you could specify nil or empty namespace in jesque so it will would with Resque and Sidekiq out of the box.

gresrun commented 9 years ago

Thanks, @dwilkie!