Hi there, I am relatively new to MINA and have used it for a couple of Java client apps. Currently I am working on a load test type application that needs to spawn hundreds or thousands of clients within the same JVM and connect to a server. The question: is there a way to run thousands of SocketConnector instances without running thousands of threads? >From the first tests I've noticed that 50 connections already create 100 threads, so it's unlikely I'll be able to go in the thousands with this threading model.
I tried passing a custom Processor to each NioSocketConnector, but still I get at least 1 thread per connection. Any suggestions, or examples I can take a look at? Thanks in advance.
