poolboy
poolboy copied to clipboard
A hunky Erlang worker pool factory
Hello, After taking a look at poolboy's README, I think this project lack some detailed introduction and mission statement on what the software accomplishes. I did not know how to...
Hello, It's not clear to me how to handle exceptions inside poolboy workers. I'm using Elixir, but I think this applies to Erlang as well. My code looks more or...
As discussed in https://github.com/devinus/poolboy/pull/83#issuecomment-224312388 I made improvements in zugolosian`s changes. In https://github.com/zugolosian/poolboy/pull/1 all commits are discussed. Summing up: - overflow rip check is now hold periodically without mass timer creation...
- Rethink EUnit tests (reproduce EUnit tests as proper tests, fixing expected state of worker pool). - Fix error: ``` ===> Errors loading plugin {rebar3_eqc,".*", {git, "https://github.com/kellymclaughlin/rebar3-eqc-plugin.git", {tag,"0.1.0"}}}. Run rebar3...
1. Add additional `-spec` tag to functions in poolboy module. 2. Improving the readability of the description of the specification (`-spec`) of function parameters. 3. Add the use of `@equiv`...
this is the current situation for the hexdocs on this project:  here is the link: https://hexdocs.pm/poolboy/
Hello, We recently used `poolboy` to manage many workers (`gen_server`), but we check one problem, for example, each `gen_server` manage a socket connection in a port, so for example, each...
In the case that a worker cannot be started (for example, connection limit of a database reached), the entire pool will crash. This is tragical with overflow workers, when requesting...
This PR should really be 2 as the title suggest. However, it was easier for me the to create it as single one. - Apologies! - I just wanted to...