How to Install and Uninstall lua-cqueues.x86_64 Package on Fedora 34

Last updated: October 05,2024

1. Install "lua-cqueues.x86_64" package

In this section, we are going to explain the necessary steps to install lua-cqueues.x86_64 on Fedora 34

$ sudo dnf update $ sudo dnf install lua-cqueues.x86_64

2. Uninstall "lua-cqueues.x86_64" package

This guide covers the steps necessary to uninstall lua-cqueues.x86_64 on Fedora 34:

$ sudo dnf remove lua-cqueues.x86_64 $ sudo dnf autoremove

3. Information about the lua-cqueues.x86_64 package on Fedora 34

Last metadata expiration check: 5:00:47 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : lua-cqueues
Version : 20200603
Release : 3.fc34
Architecture : x86_64
Size : 154 k
Source : lua-cqueues-20200603-3.fc34.src.rpm
Repository : fedora
Summary : Stackable Continuation Queues for the Lua Programming Language
URL : https://github.com/wahern/cqueues
License : MIT
Description : cqueues is a type of event loop for Lua. It doesn't use callbacks but instead
: you communicate with an event controller by the yielding and resumption of
: Lua coroutines using objects.
:
: cqueues are stackable. Each instantiated cqueue is a poll-able object which
: can be polled from another cqueue, or another event loop system entirely.
: The design is meant to be non-intrusive, composable, and embeddable within
: existing applications.
:
: cqueues includes a sockets library with DNS, buffering, end-of-line
: translation, SSL/TLS, and descriptor passing support builtin.
: Domain querying, connection establishment, and SSL negotiation are handled
: transparently as part of a state machine entered with every I/O operation,
: so users can read and write immediately upon instantiating the object,
: as if opening a regular file.
:
: cqueues also includes modules for handling signals, threads, and file change
: notifications using native kernel facilities and accessible through easy
: to use interfaces which abstract the different kernel facilities.