How to Install and Uninstall perl-Parallel-Runner.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "perl-Parallel-Runner.noarch" package

Please follow the guidelines below to install perl-Parallel-Runner.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Parallel-Runner.noarch

2. Uninstall "perl-Parallel-Runner.noarch" package

This is a short guide on how to uninstall perl-Parallel-Runner.noarch on Fedora 34:

$ sudo dnf remove perl-Parallel-Runner.noarch $ sudo dnf autoremove

3. Information about the perl-Parallel-Runner.noarch package on Fedora 34

Last metadata expiration check: 5:59:51 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-Parallel-Runner
Version : 0.013
Release : 23.fc34
Architecture : noarch
Size : 19 k
Source : perl-Parallel-Runner-0.013-23.fc34.src.rpm
Repository : fedora
Summary : An object to manage running things in parallel processes
URL : https://metacpan.org/release/Parallel-Runner
License : GPL+ or Artistic
Description : There are several other modules to do this, you probably want one of them. This
: module exists as a super-specialized parallel task manager. You create the
: object with a process limit and callbacks for what to do while waiting for a
: free process slot, as well as a callback for what a process should do just
: before exiting.
:
: You must explicitly call $runner->finish() when you are done. If the runner is
: destroyed before its children are finished, a warning will be generated and
: your child processes will be killed, by force if necessary.
:
: If you specify a maximum of 1 then no forking will occur, and run() will block
: until the coderef returns. You can force a fork by providing a boolean true
: value as the second argument to run(), which will force the runner to fork
: before running the coderef; however, run() will still block until the child
: exits.