poolboy icon indicating copy to clipboard operation
poolboy copied to clipboard

A hunky Erlang worker pool factory

Results 47 poolboy issues
Sort by recently updated
recently updated
newest added

I tried using poolboy in my Elixir program on Windows. Mix fails to compile it. Something about rebar. >mix deps.compile ==> poolboy (compile) Compiling src/poolboy.erl failed: src/poolboy.erl:17: type queue() undefined...

- [X] Use an ETS table for the waiting queue - [ ] Remove pre-17.0 support - [ ] Remove deprecated `start/1` - [ ] Remove `handle_*` fall-throughs - [...

in progress

It would be nice to be able to change the `size` and `max_overflow` parameters at runtime. This would be useful for situations where you have long-running processes that it would...

enhancement

Hello! Poolboy is a really great tool, and we use it a lot for several years. But currently it has some strange limitation: it allows worker servers' spawning function (`start_link`...

There is a race condition between checking out of a worker from the pool and worker process's termination. In test case provided worker is terminated via gen_server:cast for more reliable...

put args for workers in pool init like ["127.0.0.1",8087] and worker get [["127.0.0.1",8087]]

1 - Ready

Hello, # Requirements The requirements of my request would sound like this: - As a user of Poolex who would like to have different arguments passed for workers within **the...