Search the web
Sign In
New User? Sign Up
PowerThreading · Richter/Wintellect Power Threading
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16 - 55 of 614   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16
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...
scrop706
Offline Send Email
Sep 4, 2008
10:46 pm
17
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...
e_renshaw
Offline Send Email
Sep 15, 2008
10:51 pm
19
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 16, 2008
3:29 am
29
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...
e_renshaw
Offline Send Email
Sep 17, 2008
4:26 am
30
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 17, 2008
2:12 pm
31
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...
e_renshaw
Offline Send Email
Sep 17, 2008
10:07 pm
32
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 18, 2008
4:16 am
33
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...
Brendan
brendanmagafa
Offline Send Email
Sep 19, 2008
1:28 pm
34
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 19, 2008
3:27 pm
35
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...
Brendan
brendanmagafa
Offline Send Email
Sep 20, 2008
3:34 am
36
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 20, 2008
3:52 am
37
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...
Brendan
brendanmagafa
Offline Send Email
Sep 20, 2008
4:12 am
38
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 20, 2008
4:15 am
39
Okay thanks very much for your time. Brendan....
Brendan
brendanmagafa
Offline Send Email
Sep 20, 2008
4:31 am
40
Hi Jeff, I have a question on 'Singleton' model, please refer to the following code block .. public static SingleTon Instance { get { if (null ==...
gmoulik
Offline Send Email
Sep 26, 2008
1:25 pm
41
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 26, 2008
4:33 pm
42
Thanks a lot Jeff. From: PowerThreading@yahoogroups.com [mailto:PowerThreading@yahoogroups.com] On Behalf Of Jeffrey Richter (Wintellect LLC) Sent: Friday,...
Gautam Moulik
gmoulik
Offline Send Email
Sep 26, 2008
5:30 pm
43
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...
rjdevereux
Offline Send Email
Sep 26, 2008
6:22 pm
44
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...
Paul van Brenk
paulvanbrenk
Offline Send Email
Sep 26, 2008
8:11 pm
45
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,...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 26, 2008
10:35 pm
46
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 26, 2008
10:37 pm
47
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...
rjdevereux
Offline Send Email
Sep 27, 2008
1:01 am
48
Yes, unfortunately, Windows allows you to perform some operations only synchronously. Getting subdirectories and opening files are 2 such examples but many...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 28, 2008
8:35 am
49
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...
Olivier MATROT
olivier.matrot
Offline Send Email
Sep 29, 2008
7:10 am
50
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Sep 29, 2008
3:11 pm
51
While I have not tested it, the current version should work just fine with .NET 2.0 as long as you avoid using the ...
Jeffrey Richter
jeffrey.richter
Offline Send Email
Oct 1, 2008
1:23 am
52
... 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...
scrop706
Offline Send Email
Oct 1, 2008
8:05 pm
53
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...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Oct 4, 2008
6:49 am
54
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 4, 2008
11:44 am
55
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...
Peter Ciszewski
Peter.Ciszewski@...
Send Email
Oct 14, 2008
5:40 pm
Messages 16 - 55 of 614   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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