I'm currently developing a project with XNA that is pulling information (ID, name, file location, etc) about each of my objects (each object will be displayed on screen) from a local SQL database.

I'd like to run my database queries on a separate thread so the rendered screen doesn't freeze if the database hangs or some other unforeseen event occurs. I'm using XNA 4.0 and the application will only be running on windows. Is this possible, and if so, how?

link|improve this question

1  
Shouldn't you just be caching this information when the game starts? – Will Jun 13 '11 at 15:40
Yes, some of the info is cached when it starts. There is also other info that is updated by the database that I have to account for while the program is running, new values that have to be displayed on the screen. – NexAddo Jun 13 '11 at 16:26
feedback

3 Answers

up vote 2 down vote accepted

There are a number of options available. Generally speaking you need the query to run in a separate thread. You can use

  1. Thread pool

  2. Manually created threads here and here

I would start with thread pooling and see how that works, dedicated manual threads are not that robust in terms of memory management and reuse.

link|improve this answer
I think I am going to look into using the Async calls for the database. I'll respond how it goes once I make some progress. Thank you! – NexAddo Jun 13 '11 at 16:09
It turned out that we didn't have to make our database calls asynchronous after all. Thanks for all the help. – NexAddo Jun 15 '11 at 16:09
feedback

Not to do it at all. Seriously. There are good reasons for using threads, but your reasons are bogus:

the rendered screen doesn't freeze if the database hangs or some other unforeseen event occur

Databases dont hang and unforseen events are unforseen events. How you can cope with the database not answering for 3 minutes, for example? Show a screen with objects that are unknown?

link|improve this answer
1  
I think the spirit of the question is how to keep the screen responsive while the program is attempting to get data from a DB, which even if it performs correctly can take several seconds for large or complicated queries, or over slow network connections. In that sense, yes, a database will "hang", and while the program's waiting it will not render if the UI thread is blocked on the call. – KeithS Jun 13 '11 at 15:53
The problem with this is that in the example given it makes no sense - for exmaple, you can not play in an empoty game world, while the stuff loads in the background. – TomTom Jun 13 '11 at 16:02
I will be more clear in the future. One scenario might be after all the initial game objects are loaded from the database, some information for one of the objects currently onscreen is updated from outside the application. I don't want the UI to hang while this happens if, for some reason, its takes longer than it should. Then, after that information is updated, it will display the new information on the screen. – NexAddo Jun 13 '11 at 16:22
feedback

How do you mean "best"? There are a lot of ways to use threads and they all have strengths and weaknesses.

Declaring a new thread explicitly and starting it gives you the most direct control over the execution state of that thread:

var myDbThread = new Thread(()=>myDbRepo.GetRecordById<MyEntity>(idString));
myDbThread.Start();

Now, as long as you have a reference to myDbThread, you can abort it, pause it, join on it, etc. BUT, with control comes responsibility; you have to manage the threads you create yourself.

For most parallel tasks, using the ThreadPool is recommended. However, you lose some of the control:

Action myDbLambda = () => myEntityProperty = myDbRepo.GetRecordById<MyEntity>(idString);
var asyncResult = myDbLambda.BeginInvoke();

Once asyncResult.IsComplete returns true, myEntityProperty has the value. You can also architect it as a Func, and use a callback to set the value (this is recommended). The Asynchronous Model is built in to the BeginInvoke()/EndInvoke() method pair, and many exceptions like timeouts are expected by the ThreadPool, which will simply restart the timed-out thread. However, you can't "give up" and terminate a ThreadPool thread, "joining" on a ThreadPool thread is a little trickier, and if you're launching a lot of threads, the ThreadPool will start them in 250ms intervals which may not be the best use of processor.

There are many ways to use the ThreadPool; before delegates became even more important to .NET programming in v3.5, ThreadPool.QueueUserWorkItem was the main method. Now, as I said, delegates have BeginInvoke and EndInvoke methods allowing you to kick off background processes with the asynchronous model built in behind the scenes. In WinForms/WPF, you can also create BackgroundWorker components which are event-driven, allowing you to monitor progress and completion in a GUI element.

One thing to be aware of; it is virtually never a good idea to use background threads in ASP.NET. Unless you really know what you're doing, best-case you won't get the results of the behavior you sent to the worker thread, and worst-case you can crash your site trying.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.