I created a simple tic tac toe game, which is a web app that calls the SignalR Hub inside the same application. When deploying to a shared hosting environment it works as charm but when deploying to WindowsAzure, the response time of the Hub is relly long, and I even don't get response sometimes until I make a second call to the Hub
I guess is something that I'm misunderstanding with the Azure cloud architecture; I've searched about this problem with no luck; I found that maybe I should be using ServiceBus Queue with Worker and Web roles, but this will imply changing all the behavior of my app to call the controller (which will be calling the worker role throug the service bus queue) instead of calling the hub directly from my view for getting the real time experience
Thanks in advance