I am sorry I am a beginner.
These days I made a chatroom by asp.net core with SignalR.
My friend tried my app and pointed out that I should not use SignalR for its performance is low that now almost no one uses it.
He suggests me to use the MQ(message queue) to replace it.
However, although he has learned about not only asp.net core but also JAVA. He develops JAVA mostly in his job.
I searched in google and soon found that the Message Queuing is supported in .net framework while not supported in .net core.
I wonder whether the performance of SignalR is as low as he said.
If it was, is there any better suggestion for me to improve my project? Thank you.