Talk about netty buffer watermark s of storm client
order
This paper mainly studies netty buffer watermark s of storm client
Config
storm-2.0.0/storm-client/src/jvm/org/apache/storm/Config.java
/**
* Netty based messaging: The netty write buffer high watermark in bytes.
* <p>
* If the number of bytes queued in the netty's write buffer exceeds this value, the netty {@code ...
Posted by bob1660 on Mon, 21 Jan 2019 13:03:14 -0800
Transport layer for Dubbo in-depth analysis
Transporter class analysis
dubbo provides a unified bind and connet interface for communication framework, which is easy to manage and extend. It is encapsulated in the interface class: Transporter:
@SPI("netty") public interface Transporter {
@Adaptive({Constants.SERVER_KEY, Constants.TRANSPORTER_KEY}) Server bind(URL url, Chan ...
Posted by kidintraffic on Sat, 19 Jan 2019 04:18:12 -0800
MINA, Netty, Twisted Learning Together (11): SSL/TLS
What is SSL/TLS
Network communication without using SSL/TLS is usually plaintext transmission. Network transmission content is easy to be eavesdropped or even tampered with in the transmission process, which is very insecure. The SSL/TLS protocol is designed to solve these security problems. The SSL/TLS protocol is located on top of TCP/IP prot ...
Posted by nosheep on Sat, 05 Jan 2019 11:33:09 -0800