Click here to Skip to main content
15,887,875 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a scenario where I need to get data from APIs, do some calculations, save the data into database and display it on real time dashboard, there should not be much latency data synchronization.

Looking for architecture/design to implement using Microsoft technologies.

What I have tried:

Looking for best architecture or design which boosts performance in terms of fast or real time data synchornization,
Posted
Updated 4-Jun-18 0:18am

1 solution

Quote:
I have a scenario where I need to get data from APIs, do some calculations, save the data into database and display it on real time dashboard, there should not be much latency data synchronization.
Sure, you can use ASP.NET Core as the development framework, SignalR as the sockets management layer, to push the updates on the front-end and lastly consider the Entity Framework Core for database approach — unless SQL queries are required, even which can be easily managed with the stored procedures.

Then with these, build your application. There would be a sample demo prepared available already on the CodeProject, search in the top right corner.

GitHub - bashtavenko/real-time-dashboard: Simple real-time dashboard built with Wijmo, Signal R, Angular and ASP.NET MVC[^]
 
Share this answer
 
Comments
coolNish 5-Jun-18 0:28am    
Thanks for the help, but the solution which is there on GitHub is not actually working.

All I can see is {{perMinute}}
Events per minute

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900