Hi, According to http://mina.apache.org/faq.html: We recommend to switch the default buffer type to 'heap' by inserting the following code before you start a server:
ByteBuffer.setUseDirectBuffers(false); Should the above call should be inserted before calling NioSocketAcceptor.bind() ? If not, which call should I insert the above code before ? Thanks
