jundalisay

Joined

60 Experience
0 Lessons Completed
0 Questions Solved

Activity

Posted in Issues Deploying Rails App

You can try RUBY_CONFIGURE_OPTS=--disable-install-doc rbenv install 2.6.3

instead of rbenv install 2.6.3

I have a Rails Server A in Country A, Rails Server B in Country B, and Rails Server C in Country C, all using Devise and Omniauth.

A user can sign up in all 3 servers. But when he logs in to Server A, that server should update Server B and C, updating the user's record there that he is currently logged into Server A. How can I do this in Rails? I've heard that this process requires interprocess communication and RPC and that RabbitMQ could be used for it. 

What do I need to implement this feature?