문제

The goal of SPDY is to reduce the latency of web pages and make the web faster. It has been proven a significant reduction in page loading.

So if we use SPDY as an underlying transport for SOA related implementations (ex: SOAP message transmission, REST over SPDY), would it be beneficial?

도움이 되었습니까?

해결책

Yes it would.

SPDY is a more efficient protocol than HTTP. The main benefits that you will get for SOAP/REST communication are the fact that SPDY can do HTTP header compression, reducing bandwidth, and multiplexing - that is being able to send multiple requests on the same physical connection.

For a SOAP/REST use case you will not benefit of the big performance boost that SPDY Push gives (see demo video), but it will be worth nonetheless.

Jetty is a Java Server that supports SPDY.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top