Ask HN: Desktop push notifications
I have been looking to implement a private desktop push notification system. I have used signalR for a proof of concept, but I have read about long lived socket connections. Can anyone point me to resources on how to build such a notification system? I don't think signalR will scale, but the biggest problem is IIS app pool recycles and I loose all my connections.
3 comments
[ 2.7 ms ] story [ 17.8 ms ] threadAlthough, you did not specify the type of traffic. So not sure if you'll have scaling issues. I've used SignalR as a self-hosted service for couple of in-house applications and it worked fine. Usually about 10-20 concurrent connections.
Once you build out your service, it will act as a SignalR backend that will then communicate to a Signalr client code in a browser.
You can use .NET core to make all the above run cross-platform. In your case, for IOT devices powered by things like the RaspberryPi.