pooler.config.example 750 B

12345678910111213141516171819202122232425
  1. % -*- mode: erlang -*-
  2. % pooler app config
  3. [
  4. {pooler, [
  5. {pools, [
  6. [{name, "rc8081"},
  7. {max_count, 5},
  8. {init_count, 2},
  9. {start_mfa,
  10. {riakc_pb_socket, start_link, ["localhost", 8081]}}],
  11. [{name, "rc8082"},
  12. {max_count, 5},
  13. {init_count, 2},
  14. {start_mfa,
  15. {riakc_pb_socket, start_link, ["localhost", 8082]}}],
  16. [{name, "rc8083"},
  17. {max_count, 5},
  18. {init_count, 2},
  19. {start_mfa,
  20. {riakc_pb_socket, start_link, ["localhost", 8083]}}]
  21. ]}
  22. ]}
  23. ].