netty5/transport-native-epoll/src
Scott Mitchell 6cb6282699 Lazy Initialization of epoll splice queue
Motivation:
AbstractEpollStreamChannel has a queue which collects splice events. Splice is assumed not to be the most common use case of this class and thus the splice queue could be initialized in a lazy fashion to save memory. This becomes more significant when the number of connections grows.

Modifications:
- AbstractEpollStreamChannel.spliceQueue will be initialized in a lazy fashion

Result:
Less memory consumption for most use cases
2015-11-20 15:09:53 -08:00
..
main Lazy Initialization of epoll splice queue 2015-11-20 15:09:53 -08:00
test/java/io/netty/channel/epoll Decouple Unix from Linux in Native Transport 2015-11-02 12:29:44 -08:00