Does RPC is still in use nowadays. Or rpc were replaced by other technology? If i start new project in C++ should i consider use of RPC?
More info because i know that RPC is still in use in production code:
I have two apps to communicate each other. These two are on same machine but one is service, second is user app. User app send to service app every 2,3 seconds. Second usage of rpc. I have 1 client and many computers that have local database. And that client need to get some data from these computers.
Should i use something like Thrift for these two scenerios? Or its too big for that?