Question

Also, what are the best practices around managing the Resque built in "management structures" (like the ones in the title)? Should I ever be clearing them with jedis.del(String key) or something similar?

Was it helpful?

Solution

  1. resque:failed is the failure queue in Resque itself whereas resque:stat is the statistics layer of Resque, so without digging into the code, I'm guessing that resque:stat:failed is the statistics count of how many failures Resque has encountered.

  2. That's up for personal opinion. For me, the best way to manage them is always through the UI first, then through the console / backend if that isn't possible. I try to avoid clearing / setting keys manually using redis/jedis as I don't want to risk messing something up.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top