Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
Hello,

I have implementing realtime functionality in my project like Realtime charts,real time value in gridview etc. I have also used WCF service. Its working fine but after some time if we want to move on to another page then it tooks time. So what can i do?? How to avoid this situation or implement real time functionality? Can signalR will be good option to implement real time functionality???
Posted
Updated 17-Jun-15 21:41pm
v2

1 solution

SingleR is the ability to have server code push content to connected clients instantly as it becomes available, rather than having the server wait for a client to request new data. You can do whole lot of other activities using SingleR. It works best on chat application using WebSocket.

But in your case if it just a matter of performance, you can have 100 others options to overcome.

1. Use asynchronous option using ajax.
2. Have multi threaded options to serve multiple requests together.
3. Code refactoring as per usage.
4. Tempurary storage of data on client or servers side.
5. Pre loading of page without data.

there are many others...
 
Share this answer
 

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