Implementing Notifications in Rails

后端 未结 6 1076
渐次进展
渐次进展 2021-01-30 03:51

In my application, I want to notify a user, when he/she is mentioned in a comment or a post.
The user handle is @user_name, similar to Facebook

6条回答
  •  时光说笑
    2021-01-30 04:03

    Tumblr uses a Redis queuing system (like Resque) I believe to handle the volume.

    Do a callback (as you mentioned) and hand it off to Resque. (There was a Railscasts about Resuqe recently)

提交回复
热议问题