I currently have a lot of problems with CF10 CFHTTP.
First my test script:
<CFSET results = arraynew(1) /> <CFLOOP from="1" to="10" index="idx"> <CFSET timer_start = getTickCount() /> <CFHTTP url="https://www.google.de" method="get" result="test" /> <CFSET arrayappend(results, (getTickCount()-timer_start)/1000 & " s") /> </CFLOOP> <CFDUMP var="#results#" />
10 CFHTTP calls per line, the time they receive is transferred to the array; what all.
Results of our CF9 server:

Results of our CF10 server:

Results of our CF10 server with a delay of 5 seconds between CFHTTP calls:

I already read on the forum and Shilpi Blog , the reason is that the entropy ends on the Linux server. I checked this with watch --interval=0.1 cat ... while my test script started, but it never fell far below 4k (with rngd already installed).
Does anyone have any other idea that I can try to solve this problem? Using / dev / urandom seems unsafe for me; so itβs not an option (since the CF10 server is a production machine).
Thanks guys!
Seybsen
source share