Skip to search.
PowerThreading · Richter/Wintellect Power Threading

Group Information

  • Members: 258
  • Category: Software
  • Founded: Jun 26, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 16 - 55 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16 scrop706 Offline Send Email Sep 4, 2008
10:46 pm
Our application has not yet been upgraded to .NET 3.5. Is it possible to have a version of Wintellect.Threading.dll that will work on .NET 2.0 (does not...
17 e_renshaw Offline Send Email Sep 15, 2008
10:51 pm
I have a some queries that can be run asynchronously and the Wait for all pattern looks to be just what I would need. But what I would like to do is place the...
19 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 16, 2008
3:29 am
I have no example of this however, it is very easy to do. In your iterator, just allocate the collection you want and after you issue all the queries, execute...
29 e_renshaw Offline Send Email Sep 17, 2008
4:26 am
Jeffrey, I was sort of bouncing around some of what you are talking about below. Into my iterator, one of the parameters being passed in is a collection of...
30 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 17, 2008
2:12 pm
The first problem is that you need a method that asynchronously looks up the state by address. You can't just call GetStateByAddress - this method needs to...
31 e_renshaw Offline Send Email Sep 17, 2008
10:07 pm
Alright! Now I am getting somewhere. I followed your example and was able to get this working to fill a dataset on the web page; and wow is that fast! I am...
32 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 18, 2008
4:16 am
There is really nothing different for reads versus writes. You issue async reads or writes the same way (via some BeginXxx method) and then the AsyncEnumerator...
33 Brendan
brendanmagafa Offline Send Email
Sep 19, 2008
1:28 pm
First of all, thank you for creating such an awesome and much-needed library. I have a couple of questions regarding the OneManyResourceLock. And if I've...
34 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 19, 2008
3:27 pm
Documentation on my OneManyResourceLock can be found here: http://msdn.microsoft.com/en-us/magazine/cc163599.aspx 1. Yes, calling Done is the same as...
35 Brendan
brendanmagafa Offline Send Email
Sep 20, 2008
3:34 am
Okay that makes sense. Thanks so much for your response, I really appreciate it. I do have another question that's slightly off-topic. I'm just wondering if...
36 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 20, 2008
3:52 am
I personally have done any work along these lines. In a 32-bit address space it is impossible to get 10GB of data in memory without using some kind of paging...
37 Brendan
brendanmagafa Offline Send Email
Sep 20, 2008
4:12 am
Thanks again. Did you mean you "haven't" personally done any work along these lines? By "parallelize the scan" do you mean to allow for concurrent enumerations...
38 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 20, 2008
4:15 am
Yes, I meant "haven't". By scan, I meant read-only operations. But, for add/remove, there would probably have to be some locking - just as short-lived as...
39 Brendan
brendanmagafa Offline Send Email
Sep 20, 2008
4:31 am
Okay thanks very much for your time. Brendan....
40 gmoulik Offline Send Email Sep 26, 2008
1:25 pm
Hi Jeff, I have a question on 'Singleton' model, please refer to the following code block .. public static SingleTon Instance { get { if (null ==...
41 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 26, 2008
4:33 pm
The object reference you pass to the lock statement does NOT have to be volatile; it can be an ordinary reference. So, you can use a readonly static reference...
42 Gautam Moulik
gmoulik Offline Send Email
Sep 26, 2008
5:30 pm
Thanks a lot Jeff. From: PowerThreading@yahoogroups.com [mailto:PowerThreading@yahoogroups.com] On Behalf Of Jeffrey Richter (Wintellect LLC) Sent: Friday,...
43 rjdevereux Offline Send Email Sep 26, 2008
6:22 pm
Jeff, Have you run into situations where a multi-threaded app is limited by memory instead of CPU, or blocking? We ran into that situation, we ended up tuning...
44 Paul van Brenk
paulvanbrenk Offline Send Email
Sep 26, 2008
8:11 pm
What about the following singleton model, this doesn't require any locking since the static constructor is only called once (as per the definition of the...
45 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 26, 2008
10:35 pm
It is hard for me to offer any guidance with limited information about the end-goal. A goal should always be to use as few a number of threads as possible and,...
46 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 26, 2008
10:37 pm
No, the static field does not need to be volatile. The CLR does ensure that the static ctor has run before it allows any members to execute. -- Jeffrey Richter...
47 rjdevereux Offline Send Email Sep 27, 2008
1:01 am
Well, maybe not that intesting a question, I worked around the specific problem, but here's the background. I wrote a recursive text file searcher. I used the...
48 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 28, 2008
8:35 am
Yes, unfortunately, Windows allows you to perform some operations only synchronously. Getting subdirectories and opening files are 2 such examples but many...
49 Olivier MATROT
olivier.matrot Offline Send Email
Sep 29, 2008
7:10 am
Hello, I have a web service function that needs to call several web services sequentially, based on the result of the previous call. I'm wondering if the...
50 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 29, 2008
3:11 pm
Yes, your code is exactly right. At each "yield return 1", the thread is released and is allowed to return to the thread pool. -- Jeffrey Richter...
51 Jeffrey Richter
jeffrey.richter Offline Send Email
Oct 1, 2008
1:23 am
While I have not tested it, the current version should work just fine with .NET 2.0 as long as you avoid using the ...
52 scrop706 Offline Send Email Oct 1, 2008
8:05 pm
... send ... Thanks for the response. It's good to know the specifics. We have not run into any problems. We did, though, need to put the following snippet...
53 roberto.dalmonte
roberto.dalm... Offline Send Email
Oct 4, 2008
6:49 am
Hi Jeffrey (or anybody of the group listening) as silly as it may sound, I know your library is GREAT, but I don't know how to get started. So what I'm asking...
54 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 4, 2008
11:44 am
When you download the library, it comes with a bunch of samples showing how to use the AsyncProgModel stuff. Also, I have written a bunch of Concurrent Affairs...
55 Peter Ciszewski
Peter.Ciszewski@... Send Email
Oct 14, 2008
5:40 pm
Hi Jeff et al. I'm new to the Wintellect.Threading library and it's taken me some time to understand how the ResourceLock work so I may be missing something...
Messages 16 - 55 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help