How to Install and Uninstall lua-cqueues.x86_64 Package on CentOS 8 / RHEL 8

Last updated: May 01,2024

1. Install "lua-cqueues.x86_64" package

Please follow the instructions below to install lua-cqueues.x86_64 on CentOS 8 / RHEL 8

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

2. Uninstall "lua-cqueues.x86_64" package

In this section, we are going to explain the necessary steps to uninstall lua-cqueues.x86_64 on CentOS 8 / RHEL 8:

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

3. Information about the lua-cqueues.x86_64 package on CentOS 8 / RHEL 8

Last metadata expiration check: 1 day, 6:01:39 ago on Sun May 9 13:03:46 2021.
Available Packages
Name : lua-cqueues
Version : 20190813
Release : 3.el8
Architecture : x86_64
Size : 145 k
Source : lua-cqueues-20190813-3.el8.src.rpm
Repository : epel
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.