Greg
Greg

Reputation: 34798

WPF app - recommended approach for persisting this type of data...

What would you recommended re an approach to persist data for the following situation:

What approach would be recommended here, ideally that is easiest and keep the WPF installation simple?

Upvotes: 0

Views: 254

Answers (1)

keyle
keyle

Reputation: 2837

You could do it using the new SQL CE of Microsoft (which allows multithread). It's easy to deploy (I think it's just a matter of including a DLL)...

http://en.wikipedia.org/wiki/SQL_Server_Compact

It should handle the load fine, assuming not a gezillion people will be using it on the same machine. Even then it would be fairly easy to upgrade.

So you would run a timer or something to push your data mining into it every 5 seconds, then the client polls as the user loads screens in the client.

Later, you might want to separate it into two apps, one for the data mining, maybe running as a service and the other one as 'the client'. In that case having a server dedicated to the data mining would help.

Upvotes: 1

Related Questions