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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 95 - 124 of 619   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
95
I downloaded the zip file dated October 24th and it doesn't seem to include Wintellect.Threading.dll. Were you aware of this? Also, I got an error in Visual...
d_finucane
Offline Send Email
Nov 3, 2008
10:07 pm
96
Yes, I messed up the ZIP file dates October 24th. There is a new ZIP file dates October 30th that should have been available by now but the Wintellect web...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 4, 2008
1:07 am
97
The October 30th zip is there now and it looks good. Thanks. dan ... available by now but the Wintellect web master went on vacation. ... contains the...
d_finucane
Offline Send Email
Nov 4, 2008
7:30 pm
98
I am using the powerthreading library in an ASP.NET application. I am calling multiple select queries to a sql server database (between 1 to 35)...
Eric Renshaw
e_renshaw
Offline Send Email
Nov 4, 2008
11:04 pm
99
I don't know enough about the connection pooling features; maybe someone else can respond. If a server can't handle 300 users each making 35 async requests,...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 5, 2008
1:34 am
100
Jeffrey, I have a question regarding making queued requests and waiting for a confirmation that the request has been processed. Basically, I'm writing an...
Nader Abdelsadek
Nader.Abdelsadek@...
Send Email
Nov 5, 2008
2:37 pm
101
The web page should send a request to the server which should accept the request and then respond with an acknowledgement of accepting the request (not the...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 6, 2008
1:36 am
102
The latest version of Jeffrey Richter's free Power Threading Library, which includes a DLL for use by Silverlight applications and components is now available...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 6, 2008
1:42 am
103
Thanks Jeffrey. So you don't recommend blocking for the initial request and waiting for a confirmation that the request has been processed? Should I be making...
Nader Abdelsadek
Nader.Abdelsadek@...
Send Email
Nov 6, 2008
1:52 pm
104
You should ALWAYS do async requests if you care about performance and scalability. Therefore, I always recommend against blocking. -- Jeffrey Richter...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 6, 2008
2:08 pm
105
I will give it a try. Thanks for your help! ________________________________ From: PowerThreading@yahoogroups.com [mailto:PowerThreading@yahoogroups.com] On...
Nader Abdelsadek
Nader.Abdelsadek@...
Send Email
Nov 6, 2008
2:18 pm
106
One clarification, your statement, "The server will respond when the processing is complete." There are two cases 1) Either the processing is completed,...
Nader Abdelsadek
Nader.Abdelsadek@...
Send Email
Nov 6, 2008
2:48 pm
107
I think you should break this apart. Part 1: The client asks the server to process a request. The server accepts the request (perhaps to a queue) and responds...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 6, 2008
4:04 pm
108
Yes, agreed. But in Part 2, from the server perspective, the server will have either a) processed the request in that case it will return with the ...
Nader Abdelsadek
Nader.Abdelsadek@...
Send Email
Nov 6, 2008
4:52 pm
109
In my web.config I have impersonation set to false and I am using integrated security. From what I have read, it looks like a connection pool is set up for...
Gautam Moulik
gmoulik
Offline Send Email
Nov 7, 2008
6:37 am
110
Thanks for the info Gautam. The application pool I am using runs under a service account but its the same idea. So it's one connection pool after all... Good...
Eric Renshaw
e_renshaw
Offline Send Email
Nov 7, 2008
5:37 pm
111
I don't know exactly what you are trying to accomplish so it is hard for me to answer. And, this is not the forum to get into it in more detail. However, based...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 8, 2008
3:42 am
112
Hi Jeff, I came up with a very basic question, that is when to use Volatile and when to use Interlocked methods( say Interlocked.Exchange). Consider the...
gmoulik
Offline Send Email
Nov 19, 2008
5:50 am
113
1. Yes, Interlocked methods are slower than accessing a volatile field. However, in .NET 4.0, the perf difference will be less because the JITter will...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 19, 2008
5:56 am
114
Jeff, Thanks a lot. From: PowerThreading@yahoogroups.com [mailto:PowerThreading@yahoogroups.com] On Behalf Of Jeffrey Richter (Wintellect LLC) Sent: Wednesday,...
Gautam Moulik
gmoulik
Offline Send Email
Nov 19, 2008
6:08 am
115
Hi Jeffrey, first of all, thank you for great library which you make available. I try to convert my application to use OneManyResourceLock instead of ...
€ ΆΠ’½ΠΈΠΊΠΎΠ»Π°ΠΉ € ...
nsentinel@...
Send Email
Nov 19, 2008
11:42 pm
116
Nick, There is always the4 chance that there is a bug is my deadlock detection code. If you could send me a SMALL repro case, I'll take a look at it. You could...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 20, 2008
5:33 am
117
Thank you very much for your answers. If I can get small repro case I'll let you know. I try to rewrite my code with ReaderWriterGate Again thank you for info...
€ ΆΠ’½ΠΈΠΊΠΎΠ»Π°ΠΉ € ...
nsentinel@...
Send Email
Nov 20, 2008
8:25 am
118
I just downloaded the latest version of the Wintellect.Threading.dll and noticed that the CallbackThreadPool is no longer part of it. I have used it in the...
williarob2
Offline Send Email
Nov 25, 2008
2:05 pm
119
I recommend using the CLR's built-in thread pool. The only reason that I've heard of for people wanting to use another thread pool in addition to the CLR's...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 25, 2008
3:18 pm
120
Jeffrey, thank you for your quick response, I will certainly take a look at the AsyncEnumerator class. Is the CLR thread pool increased only for the 3.5...
williarob2
Offline Send Email
Nov 25, 2008
6:07 pm
121
So, let me start off by saying I'm not an ASP.NET expert so take what I say with a grain of salt... The correct thing to do is for people to design their apps...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 25, 2008
11:59 pm
122
I agree that using a custom thread pool is not good practice. Personally, I find it rather absurd that the ASP.NET engine pulls a thread from the I/O Thread...
williarob2
Offline Send Email
Nov 26, 2008
1:45 am
123
ASP.NET is doing what it is supposed to be doing in regards to the thread pool. The real problem is that all these various libraries are doing the wrong thing....
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Nov 26, 2008
4:22 am
124
I was able to add asynchronous methods to the SqlDatabase class of the Microsoft.Practices.EnterpriseLibrary.Data module, and this will be the solution I...
williarob2
Offline Send Email
Nov 26, 2008
6:09 pm
Messages 95 - 124 of 619   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