~kkubasik/beagle/feisty-update

« back to all changes in this revision

Viewing changes to beagled/QueryResult.cs

  • Committer: Kevin Kubasik
  • Date: 2007-08-24 00:14:03 UTC
  • Revision ID: kevin@kubasik.net-20070824001403-7ud76dmpdrgz864x
merge from current build

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
                                if (!WorkerStartNoLock (worker)) 
217
217
                                        return;
218
218
 
219
 
                                ExceptionHandlingThread.Start (new ThreadStart (qwc.Start));
 
219
                                // Run our queries serially rather than in
 
220
                                // parallel with threads.  Since 98% of the
 
221
                                // time indexes will be stored on the same disk
 
222
                                // we gain nothing by parallelizing, even on
 
223
                                // multiprocessor/multicore systems.
 
224
                                //
 
225
                                // This also reduces memory usage considerably.
 
226
 
 
227
                                //ExceptionHandlingThread.Start (new ThreadStart (qwc.Start));
 
228
                                qwc.Start ();
220
229
                        }
221
230
                }
222
231