1234567891011121314151617181920212223 |
- [
- {pooler, [
- {pools, [
- [{name, "pool1"},
- {max_count, 5},
- {init_count, 2},
- {start_mfa,
- {pooled_gs, start_link, [{"p1"}]}}],
-
- [{name, "pool2"},
- {max_count, 5},
- {init_count, 2},
- {start_mfa,
- {pooled_gs, start_link, [{"p2"}]}}]
- ]}
-
-
-
-
- ]}
- ].
|