Click here to Skip to main content
16,006,001 members
Home / Discussions / C#
   

C#

 
GeneralRe: Live Data in an application Pin
vjs244515-Oct-11 5:28
vjs244515-Oct-11 5:28 
GeneralRe: Live Data in an application Pin
PIEBALDconsult15-Oct-11 5:37
mvePIEBALDconsult15-Oct-11 5:37 
GeneralRe: Live Data in an application Pin
vjs244515-Oct-11 5:47
vjs244515-Oct-11 5:47 
GeneralRe: Live Data in an application Pin
PIEBALDconsult15-Oct-11 6:21
mvePIEBALDconsult15-Oct-11 6:21 
GeneralRe: Live Data in an application Pin
vjs244515-Oct-11 6:34
vjs244515-Oct-11 6:34 
GeneralRe: Live Data in an application Pin
Mark Salsbery15-Oct-11 6:55
Mark Salsbery15-Oct-11 6:55 
GeneralRe: Live Data in an application Pin
vjs244515-Oct-11 14:21
vjs244515-Oct-11 14:21 
AnswerRe: Live Data in an application Pin
BobJanova16-Oct-11 22:52
BobJanova16-Oct-11 22:52 
It depends (doesn't it always), in this case on user count, criticality of 'live' (i.e. does it have to be right now, or will 30s later? a minute later? etc do?) and volume of data which is changed.

You really, really don't want 20,000 records in the front end at once. That much data is not parsable by a human, and if you throw that at your users they will just press 'Reconcile' without reading it properly.

It sounds like you're backing onto a database already, so stick with that. I'd use a server-side business layer which handled requests and talked to the database, and also managed updates. Whether to do that as a simple web app with AJAX and polling for updates (with the server maintaining some kind of memory of when it last updated a client and what it's looking at) or a standalone server app hosting a TCP server which pushes updates (again, only sending data that is currently active in a client) depends on the questions above, and also whether web/desktop is specified in the requirements.
QuestionUML Class Diagram Pin
PozzaVecia14-Oct-11 21:14
PozzaVecia14-Oct-11 21:14 
AnswerRe: UML Class Diagram Pin
Abhinav S15-Oct-11 3:20
Abhinav S15-Oct-11 3:20 
GeneralRe: UML Class Diagram Pin
PozzaVecia15-Oct-11 5:32
PozzaVecia15-Oct-11 5:32 
QuestionDisposing of values in foreach loop Pin
CCodeNewbie14-Oct-11 9:39
CCodeNewbie14-Oct-11 9:39 
AnswerRe: Disposing of values in foreach loop Pin
Ian Shlasko14-Oct-11 9:46
Ian Shlasko14-Oct-11 9:46 
GeneralRe: Disposing of values in foreach loop Pin
CCodeNewbie14-Oct-11 11:05
CCodeNewbie14-Oct-11 11:05 
GeneralRe: Disposing of values in foreach loop Pin
Ian Shlasko14-Oct-11 11:45
Ian Shlasko14-Oct-11 11:45 
GeneralRe: Disposing of values in foreach loop Pin
CCodeNewbie14-Oct-11 11:50
CCodeNewbie14-Oct-11 11:50 
GeneralRe: Disposing of values in foreach loop Pin
BobJanova16-Oct-11 22:54
BobJanova16-Oct-11 22:54 
AnswerRe: Disposing of values in foreach loop Pin
PIEBALDconsult14-Oct-11 11:11
mvePIEBALDconsult14-Oct-11 11:11 
GeneralRe: Disposing of values in foreach loop Pin
CCodeNewbie14-Oct-11 11:16
CCodeNewbie14-Oct-11 11:16 
GeneralRe: Disposing of values in foreach loop Pin
PIEBALDconsult14-Oct-11 11:47
mvePIEBALDconsult14-Oct-11 11:47 
GeneralRe: Disposing of values in foreach loop Pin
CCodeNewbie14-Oct-11 11:56
CCodeNewbie14-Oct-11 11:56 
GeneralRe: Disposing of values in foreach loop Pin
PIEBALDconsult14-Oct-11 12:04
mvePIEBALDconsult14-Oct-11 12:04 
GeneralRe: Disposing of values in foreach loop Pin
CCodeNewbie14-Oct-11 21:50
CCodeNewbie14-Oct-11 21:50 
GeneralRe: Disposing of values in foreach loop Pin
PIEBALDconsult15-Oct-11 4:22
mvePIEBALDconsult15-Oct-11 4:22 
AnswerRe: Disposing of values in foreach loop Pin
Luc Pattyn14-Oct-11 15:12
sitebuilderLuc Pattyn14-Oct-11 15:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.