I haven’t found a lot of documentation about the new async api in Java client other than the example in http://www.aerospike.com/docs/client/java/usage/async
Specifically:
- What is the the difference between direct nio, Netty nio and Netty epoll.
- What is the recommended method of usage, assuming the service running the client runs on Linux machine?
- Could you clarify the usage of the event loop (and calling eventLoop.next() as concept - why do I need it and when should it be used (as opposed to the thread pool that the old AsyncClient was using)?
- Do you have any other examples and documentations for the new Async API?