How to Install and Uninstall perl-Coro-Multicore.x86_64 Package on Fedora 34

Last updated: October 06,2024

1. Install "perl-Coro-Multicore.x86_64" package

This guide covers the steps necessary to install perl-Coro-Multicore.x86_64 on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Coro-Multicore.x86_64

2. Uninstall "perl-Coro-Multicore.x86_64" package

This guide covers the steps necessary to uninstall perl-Coro-Multicore.x86_64 on Fedora 34:

$ sudo dnf remove perl-Coro-Multicore.x86_64 $ sudo dnf autoremove

3. Information about the perl-Coro-Multicore.x86_64 package on Fedora 34

Last metadata expiration check: 2:26:40 ago on Tue Sep 6 14:10:38 2022.
Available Packages
Name : perl-Coro-Multicore
Version : 1.06
Release : 5.fc34
Architecture : x86_64
Size : 33 k
Source : perl-Coro-Multicore-1.06-5.fc34.src.rpm
Repository : fedora
Summary : Make Coro threads on multiple cores with specially supported modules
URL : https://metacpan.org/release/Coro-Multicore
License : (GPL+ or Artistic) and (Public Domain or CC0)
Description : While Coro threads (unlike ithreads) provide real threads similar to
: pthreads, python threads and so on, they do not run in parallel to each
: other even on machines with multiple CPUs or multiple CPU cores.
:
: This module lifts this restriction under two very specific but useful
: conditions: firstly, the coro thread executes in XS code and does not
: touch any perl data structures, and secondly, the XS code is specially
: prepared to allow this.