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
Copy file name to clipboardExpand all lines: doc/Language/variables.pod6
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1289,12 +1289,12 @@ L<Telemetry> has been loaded.
1289
1289
1290
1290
Note on usage of C<$*SCHEDULER>:
1291
1291
1292
-
For the current Rakudo, by default this imposes a maximum of 16 threads on the methods
1293
-
C<.hyper> and C<.race>, and other thread-pool classes that use that scheduler such as C<Promise>s or C<Supplie>s. To change the maximum number of threads, either set the
1292
+
For the current (2018.04) Rakudo, by default this imposes a maximum of 64 threads on the methods
1293
+
C<.hyper>, C<.race> and other thread-pool classes that use that scheduler such as C<Promise>s or C<Supplie>s. To change the maximum number of threads, you can either set the
1294
1294
environment variable C<RAKUDO_MAX_THREADS> before running perl6 or create a scoped copy
1295
1295
with the default changed before using them:
1296
1296
1297
-
my $*SCHEDULER = ThreadPoolScheduler.new( max_threads => 64 );
1297
+
my $*SCHEDULER = ThreadPoolScheduler.new( max_threads => 128 );
1298
1298
1299
1299
This behavior is not tested in the spec tests and is subject to change.
0 commit comments