You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [ThreadPoolScheduler](https://docs.raku.org/type/ThreadPoolScheduler) is the default scheduler, it maintains a pool of threads that are allocated on demand, creating new ones as necessary up to maximum number given as a parameter when the scheduler object was created (the default is 16.)
Suggestions
If 64 is what it always is, just change this, but if not, reflect reality. :)
The text was updated successfully, but these errors were encountered:
Problem or new feature
At least on my computer, ThreadPoolScheduler defaults to 64 threads:
(The
$*SCHEDULER
instance also is set to 64 by default, with no environment set)However, on https://docs.raku.org/language/concurrency , under
ThreadPoolScheduler
, it states that it is 16:Suggestions
If 64 is what it always is, just change this, but if not, reflect reality. :)
The text was updated successfully, but these errors were encountered: