Hi to all,
I have upgraded my server from R5 to R7.02FP1 and I see that my web application (all Web Site…) have a time latency to release the Object…
Hi have found this blogger with the same problem…
http://www.domblog.de/domblog.nsf/d6plinks/JPOR-6PTD8Z
Someone have a suggest for me?
Tnx
Subject: Perfomance Problem HTTP server
I don’t know why performance would decrease after upgrading from R5 to R7. The HTTP server in 7 seems to work better for me. There are some good resources in this article from Developerworks;IBM Developer
Subject: Perfomance Problem HTTP server
ND 6 “upgraded”/changed the thread queueing mechanism to a round-robin style. If your requests were always small and quick you would likely get a performance boost.
But if any of your requests were slower or long-running (e.g. agent calls) then any requests stuck behind one of those requests would sit there for a very long time.
A later version of 6.5.x (6.5.5 and 6.5.4FP1) re-introduced the R5-style of queueing. When a request comes in HTTP will look for a thread with no work on it and give the request to that thread. Your article talks about this. To turn it on you need to add the following to your notes.ini:
HTTPQueueMethod=2