-
i'm developing a http server use netty, bootstrap code like this:
i want use lettuce to construct fully asynchronous app (since Jedis is blocking io and need too many redis connection). `
` i'm confusing now... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, you can reuse eventloops from your netty server. If you implement a |
Beta Was this translation helpful? Give feedback.
Yes, you can reuse eventloops from your netty server. If you implement a
EventLoopGroupProvider
, you can provide an eventloop object that matches the requested channel type (epoll, kqueue, nio, …).