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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 95 - 124 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
95 d_finucane Offline Send Email Nov 3, 2008
10:07 pm
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...
96 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 4, 2008
1:07 am
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...
97 d_finucane Offline Send Email Nov 4, 2008
7:30 pm
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...
98 Eric Renshaw
e_renshaw Offline Send Email
Nov 4, 2008
11:04 pm
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)...
99 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 5, 2008
1:34 am
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,...
100 Nader Abdelsadek
Nader.Abdelsadek@... Send Email
Nov 5, 2008
2:37 pm
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...
101 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 6, 2008
1:36 am
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...
102 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 6, 2008
1:42 am
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...
103 Nader Abdelsadek
Nader.Abdelsadek@... Send Email
Nov 6, 2008
1:52 pm
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...
104 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 6, 2008
2:08 pm
You should ALWAYS do async requests if you care about performance and scalability. Therefore, I always recommend against blocking. -- Jeffrey Richter...
105 Nader Abdelsadek
Nader.Abdelsadek@... Send Email
Nov 6, 2008
2:18 pm
I will give it a try. Thanks for your help! ________________________________ From: PowerThreading@yahoogroups.com [mailto:PowerThreading@yahoogroups.com] On...
106 Nader Abdelsadek
Nader.Abdelsadek@... Send Email
Nov 6, 2008
2:48 pm
One clarification, your statement, "The server will respond when the processing is complete." There are two cases 1) Either the processing is completed,...
107 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 6, 2008
4:04 pm
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...
108 Nader Abdelsadek
Nader.Abdelsadek@... Send Email
Nov 6, 2008
4:52 pm
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 ...
109 Gautam Moulik
gmoulik Offline Send Email
Nov 7, 2008
6:37 am
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...
110 Eric Renshaw
e_renshaw Offline Send Email
Nov 7, 2008
5:37 pm
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...
111 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 8, 2008
3:42 am
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...
112 gmoulik Offline Send Email Nov 19, 2008
5:50 am
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...
113 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 19, 2008
5:56 am
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...
114 Gautam Moulik
gmoulik Offline Send Email
Nov 19, 2008
6:08 am
Jeff, Thanks a lot. From: PowerThreading@yahoogroups.com [mailto:PowerThreading@yahoogroups.com] On Behalf Of Jeffrey Richter (Wintellect LLC) Sent: Wednesday,...
115 € ΆΠ’½ΠΈΠΊΠΎΠ»Π°ΠΉ € ...
nsentinel@... Send Email
Nov 19, 2008
11:42 pm
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 ...
116 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 20, 2008
5:33 am
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...
117 € ΆΠ’½ΠΈΠΊΠΎΠ»Π°ΠΉ € ...
nsentinel@... Send Email
Nov 20, 2008
8:25 am
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...
118 williarob2 Offline Send Email Nov 25, 2008
2:05 pm
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...
119 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 25, 2008
3:18 pm
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...
120 williarob2 Offline Send Email Nov 25, 2008
6:07 pm
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...
121 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 25, 2008
11:59 pm
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...
122 williarob2 Offline Send Email Nov 26, 2008
1:45 am
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...
123 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Nov 26, 2008
4:22 am
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....
124 williarob2 Offline Send Email Nov 26, 2008
6:09 pm
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...
Messages 95 - 124 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