Is there any difference in the ways we protect resources in thread-per-connection model and NIO-model (using Netty for example)? For example, if we have some global object the most obvious thing to make it's methods thread-safe is to make them syncronized.
Should we use the same approach when working with NIO-based communication? As I understand, the thread in NIO is more valuable resource than in thread-per-connection. If several threads will be blocked waiting for a synchronized resource to be released, can this have any impact on the performance of processing other requests, unrelated to this resource? If this is implementation-specific, how things work in Netty specifically?