I have a PHP system where users interact with others; when user do some action, then this action will forward to all users following this user as member feed.
I currently use beanstalkd queue system, so I send massage to beanstalkd and beanstalkd complete this action and send it to all users and do database handling like insert.
But I have a lot of problems in beanstalkd, and recently I read about Active MQ.
So can I use and replace beanstalkd with Active MQ and use Active MQ as queuing system to complete this action in order not waiting to complete response and reduce page response?
Or if there is any other related system please help me?