Hacker News new | ask | show | jobs
by martin_rusev 5310 days ago
It was Redis once :) But Redis is not a good database for storing Rails exceptions, that's why I replaced it with Mongo.
1 comments

:) Thanks for sharing your work. If you have the time could you elaborate on why Redis is not good for Rails exceptions?
Because at its best Redis is an in-memory database. That means saving log information to it ( the exceptions are log information after all ) will take RAM. And at some point you will have to migrate to bigger VPS just because of that. You can manage that with the expiring keys, but some people prefer to keep their logs for long time.
Got it! Thanks for the explanation. Makes sense.