Java HTTP Requests Buffer size
- by behrk2
Hello,
I have an HTTP Request Dispatcher class that works most of the time, but I had noticed that it "stalls" when receiving larger requests. After looking into the problem, I thought that perhaps I wasn't allocating enough bytes to the buffer. Before, I was doing:
byte[] buffer = new byte[10000];
After changing it to 20000, it seems to have…