feat: add pool runtime setters
[poolifier.git] / src / pools / selection-strategies / weighted-round-robin-worker-choice-strategy.ts
2023-04-15  Jérôme Benoitfeat: add pool runtime setters
2023-04-14  Jérôme Benoitfix: fix worker choice strategy options handling
2023-04-12  Jérôme BenoitMerge branch 'master' of github.com:jerome-benoit/poolifier
2023-04-11  Jérôme Benoitrefactor: explicity extends Task for MessageValue type
2023-04-11  Jérôme BenoitMerge branch 'master' of github.com:poolifier/poolifier
2023-04-11  Jérôme Benoitdocs: merge pool internal interface to public
2023-04-09  Jérôme Benoitfeat: add pool option to enable median runtime
2023-04-08  Jérôme Benoitfeat: add tasks queue to pool data structure
2023-04-08  Jérôme Benoitfeat: add median task run time statistic
2023-04-07  Jérôme Benoitrefactor: untangle worker choosing code from worker...
2023-04-07  Jérôme Benoitdocs: fix typedoc generation with inheritance
2023-04-05  Jérôme Benoitfix: ensure worker key can't be negative in worker...
2023-04-05  Jérôme Benoitrefactor: conditionally reset strategy internals
2023-04-05  Jérôme Benoitrefactor: apply stricter strategy design pattern requir...
2023-04-04  Jérôme Benoitperf: allow finer grained control over tasks usage...
2023-04-04  Jérôme Benoitrefactor: align findFreeWorkerKey() return type with...
2023-04-03  Jérôme Benoitfix: ensure worker removal impact is propated to worker...
2023-04-03  Jérôme Benoitperf: use worker key as much as possible instead of...
2023-04-03  Jérôme Benoitperf: remove unneeded nullish check in hot code paths
2023-04-02  Jérôme Benoitperf: use a single array to store pool workers and...
2023-04-02  Jérôme Benoitrefactor: remove unneeded encapsulation around tasks...
2023-04-02  Jérôme Benoitfix: add missing crypto import
2023-04-02  Jérôme BenoitMerge branch 'master' of github.com:poolifier/poolifier
2023-04-02  Jérôme Benoitperf: use a single map to store pool workers and their...
2023-01-03  Jérôme BenoitInitial comment conversion to TSDoc
2022-10-22  Jérôme BenoitProperly integrate standard JS tools for JS and TS...
2022-10-14  Jérôme BenoitWRR: Fix worker choice initial runtime value on each...
2022-10-14  Jérôme BenoitOptimize WRR implementation
2022-10-14  Jérôme BenoitWRR strategy: cleanups
2022-10-14  Jérôme BenoitFixes to worker selection strategies
2022-10-14  Jérôme BenoitFlag some attributes as readonly
2022-10-13  Jérôme BenoitMerge branch 'master' of github.com:poolifier/poolifier
2022-10-13  Jérôme BenoitFix strategies internals reset
2022-10-11  Jérôme BenoitReset all internal statistics at worker choice strategy...
2022-10-11  Jérôme BenoitWRR strategy: round the default weight computation
2022-10-10  Jérôme BenoitUniformize some comments
2022-10-10  Jérôme BenoitFix WRR worker choice strategy implementation
2022-10-10  Jérôme Benoitsrc/pools/selection-strategies/weighted-round-robin...