Stavo leggendo questa trascrizione di un'intervista con uno sviluppatore di GitHub e stava descrivendo come usano Redis:
Q: You mentioned using Redis. How do you use that?
A: We use Redis for exception handling and for our queue. We tried a lot of Ruby-based queuing mechanisms. Chris wrote an abstraction to the queuing mechanism. We used to use BJ and DJ and in the super early days we tried out Amazon SQS and a lot of queuing mechanisms and they all fell over at one point or another with the amount of traffic that we were doing on them and the types of queries that we were trying to get from them. Eventually we moved to a Redis space that Chris also wrote, called Resque.
Qualcuno può immaginare cosa significhi utilizzare Redis per la gestione delle eccezioni? Significa la registrazione di eccezioni o qualcos'altro?
Puoi vedere il video di lui che lo dice qui .