<?xml version="1.0" encoding="UTF-8"?>











<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">



<channel>
    <title>Support Forums: Message List - HTTP Connection pooling</title>
    <link>http://www.theserverside.com</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    
        <generator>Jive Forums Silver 5.5.30 (www.jivesoftware.com)</generator>
    
    <pubDate>Sat, 18 May 2013 01:52:10 -0400</pubDate>


    <item>

        <title>Performance of HTTP Client</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37513</link>

        

        
            <description><![CDATA[If you type &quot;httpclient performance&quot; into google, you will find the documentation about how to make it go fast.  It will go very fast.]]></description>
        

        <pubDate>Thu, 17 Nov 2005 08:27:30 -0500</pubDate>

        

        <jf:creationDate>Thu, 17 Nov 2005 08:27:30 -0500</jf:creationDate>
        <jf:modificationDate>Thu, 17 Nov 2005 08:27:30 -0500</jf:modificationDate>
        <jf:date>Nov 17, 2005</jf:date>
        <jf:author>Eric Bowman</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Provoking: write a JCA connector!</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37513</link>

        

        
            <description><![CDATA[Well, Thanks for the help. I am using Tomcat and I doubt wheather its available there.]]></description>
        

        <pubDate>Mon, 14 Nov 2005 21:04:12 -0500</pubDate>

        

        <jf:creationDate>Mon, 14 Nov 2005 21:04:12 -0500</jf:creationDate>
        <jf:modificationDate>Mon, 14 Nov 2005 21:04:12 -0500</jf:modificationDate>
        <jf:date>Nov 14, 2005</jf:date>
        <jf:author>Sachin Dharmapurikar</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Performance of HTTP Client</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37513</link>

        

        
            <description><![CDATA[Well, I wanted to build my own implementation which is very lightweight. Now even I am loosing time hence I am not in position to re-invent the wheels. Will you please guide me about the performance of the HTTPClient? For such high number of requests,...]]></description>
        

        <pubDate>Mon, 14 Nov 2005 21:03:01 -0500</pubDate>

        

        <jf:creationDate>Mon, 14 Nov 2005 21:03:01 -0500</jf:creationDate>
        <jf:modificationDate>Mon, 14 Nov 2005 21:03:01 -0500</jf:modificationDate>
        <jf:date>Nov 14, 2005</jf:date>
        <jf:author>Sachin Dharmapurikar</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>HTTP Connection pooling</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37513</link>

        

        
            <description><![CDATA[Do NOT use HttpURLConnection for this.  It's not built for it, and it's very hard to deal with.  I used it for a high performance application, and it was like a boat anchor around my neck.<br><br>Use HttpClient from Jakarta Commons instead.  It's a much...]]></description>
        

        <pubDate>Sun, 13 Nov 2005 20:07:17 -0500</pubDate>

        

        <jf:creationDate>Sun, 13 Nov 2005 20:07:17 -0500</jf:creationDate>
        <jf:modificationDate>Sun, 13 Nov 2005 20:07:17 -0500</jf:modificationDate>
        <jf:date>Nov 13, 2005</jf:date>
        <jf:author>Eric Bowman</jf:author>
        <jf:replyCount>2</jf:replyCount>
    </item>


    <item>

        <title>HTTP Connection pooling</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37513</link>

        

        
            <description><![CDATA[You can only create the URL object and can cache it, since HTTP is the stateless protocol you will have to open the connection every time and you  won't be able to cache it.]]></description>
        

        <pubDate>Sat, 12 Nov 2005 21:34:58 -0500</pubDate>

        

        <jf:creationDate>Sat, 12 Nov 2005 21:34:58 -0500</jf:creationDate>
        <jf:modificationDate>Sat, 12 Nov 2005 21:34:58 -0500</jf:modificationDate>
        <jf:date>Nov 12, 2005</jf:date>
        <jf:author>Hanuman Gahlot</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Provoking: write a JCA connector!</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37513</link>

        

        
            <description><![CDATA[Depending on your scalability needs, may be you would write a JCA connector to use the pooling management done by the J2EE container.<br>I know this is not easy, but with little read at the specs you will be amazed.<br><br>Tell me what you think about...]]></description>
        

        <pubDate>Sat, 12 Nov 2005 21:09:59 -0500</pubDate>

        

        <jf:creationDate>Sat, 12 Nov 2005 21:09:59 -0500</jf:creationDate>
        <jf:modificationDate>Sat, 12 Nov 2005 21:09:59 -0500</jf:modificationDate>
        <jf:date>Nov 12, 2005</jf:date>
        <jf:author>Flavio Stutz</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>HTTP Connection pooling</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37513</link>

        

        
            <description><![CDATA[I am trying to write a client application which is going to communicate to a HTTP server. From this client I am expecting heavy number of requests like 1000 requests per second. I want to avoid batch requests for some reason. I opened a connection with...]]></description>
        

        <pubDate>Thu, 10 Nov 2005 07:47:56 -0500</pubDate>

        

        <jf:creationDate>Thu, 10 Nov 2005 07:47:56 -0500</jf:creationDate>
        <jf:modificationDate>Thu, 10 Nov 2005 07:47:56 -0500</jf:modificationDate>
        <jf:date>Nov 10, 2005</jf:date>
        <jf:author>Sachin  Dharmapurikar</jf:author>
        <jf:replyCount>6</jf:replyCount>
    </item>



</channel>
</rss>

