NOr
NOr

Reputation: 1063

C# MVC notification system

I'm working on a C# MVC 4 application and I want to make a notification system much like facebook.

I thought about adding a notification in a table for each event, and then make AJAX calls to the database each 1 minute to retrieve notifications for the current user.

But I'm afraid it's too heavy.

Upvotes: 0

Views: 6977

Answers (1)

Abdul Khan
Abdul Khan

Reputation: 363

Your best bet would be to go with SignalR. Its designed for the purpose of real time notification

introduction-to-signalr

Upvotes: 4

Related Questions