Trying to increase the number of tasks per core.

This commit is contained in:
Sergiotarxz 2024-05-24 08:44:26 +02:00
parent 8426dc6dfb
commit b43b951729

View File

@ -25,7 +25,7 @@ has _ua => ( is => 'lazy', );
has _last_offset_update => ( is => 'rw', );
has _used_cores => ( is => 'rw', default => sub { 0 } );
has _cores => ( is => 'rw', default => sub { `nproc` } );
has _cores => ( is => 'rw', default => sub { `nproc` * 7 / 4 } );
has _updates => ( is => 'rw' );
has _ioloop => ( is => 'rw' );