문제

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?

도움이 되었습니까?

해결책

  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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top