comsun.net. httpserver.HttpServer支持单一连接管道吗? 它似乎同时处理多个客户,但一个单一的连接要求正在按序执行。
这是否准确,如果是,是否有办法解决这一问题?
comsun.net. httpserver.HttpServer支持单一连接管道吗? 它似乎同时处理多个客户,但一个单一的连接要求正在按序执行。
这是否准确,如果是,是否有办法解决这一问题?
吉大港山区管道实际上很简单:客户可以在没有阅读以前的答复的情况下,再写接线要求。
任何网络服务器都很难不支持管道。 它必须向前看,如果在目前要求之外发现有香味,它需要放弃......但这种rid笑,没有人这样做。
这与服务器处理请求的方式毫无关系——序列或平行处理。 这样做当然比较困难,有些问题必须解决。
HTTP servers compliant to HTTP 1.1 are expected to support pipelining. Note that pipelining is supposed to be also supported by client.
According to httpserver
The API provides a partial implementation of RFC 2616 (HTTP 1.1) and RFC 2818 (HTTP over TLS).
it seems to imply that the com.sun.net.httpserver.HttpServer
does not fully support HTTP1.1.
HttpURLConnection
does not support pipelining and so I am leaning to think that the com.sun.net.httpserver.HttpServer
does not support pipelining either.
You say you did some tests. How did you test this?
Update:
From the note it seems that pipelining is supported.
If, as you say you send the requests pipelined, the responses should come back according to the arrival of the requests (irrelevant of time it takes to finish each request i.e. some are faster than others).
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...