Hacker News new | ask | show | jobs
by ActsJuvenile 3563 days ago
What are your thoughts on using RethinkDB for massive-scale logging and task queuing? Trying to select between that and Redis.
1 comments

Massive-scale (searchable?) logging is done with elastic-search. Redis is ok for task-queueing but is in-memory. ~best in that case (most features) would be rabbitmq (based on "python celery") though it ~should be enough in your usecase

hell, you can even use your favorite (postgresql) rdbms to queue tasks