durable-queue icon indicating copy to clipboard operation
durable-queue copied to clipboard

Dashes converted to underscores

Open MichaelDrogalis opened this issue 10 years ago • 1 comments

Hey @ztellman. Thanks for the awesome library!

I noticed that queue names with dashes are automatically converted to underscores. Intentional?

(def dir "/tmp")
(def conn (d/queues dir {}))
(d/put! conn "a-b-c" 42)
(d/stats conn)
;; => {"a_b_c" {:in-progress 0, :completed 0, :retried 0, :enqueued 1, :num-slabs 1, :num-active-slabs 1}}

MichaelDrogalis avatar Jun 07 '15 15:06 MichaelDrogalis

This issue can be safely closed, durable-queue intentionally munges the names of all the queues in it's codebase.

vedang avatar May 02 '23 06:05 vedang