Advertisement
tatdat171

RabbitMQ

Mar 17th, 2016
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1.  
  2. {kernel, [
  3. {inet_default_connect_options, [{nodelay, true}]},
  4. {inet_default_listen_options, [{nodelay, true}]}
  5. ]},
  6. {rabbit, [
  7. {tcp_listeners, [{"10.1.6.244", 5677}]},
  8. {vm_memory_high_watermark, 0.7},
  9. {handshake_timeout, 20000},
  10. {tcp_listen_options, [
  11. {backlog, 4096},
  12. {nodelay, true},
  13. {sndbuf, 196608},
  14. {recbuf, 196608}
  15. ]}
  16. ]}
  17. ].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement