How to Install and Uninstall lua-cqueues.x86_64 Package on Rocky Linux 8

Last updated: April 29,2024

1. Install "lua-cqueues.x86_64" package

Please follow the guidelines below to install lua-cqueues.x86_64 on Rocky Linux 8

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

2. Uninstall "lua-cqueues.x86_64" package

Please follow the steps below to uninstall lua-cqueues.x86_64 on Rocky Linux 8:

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

3. Information about the lua-cqueues.x86_64 package on Rocky Linux 8

Last metadata expiration check: 0:36:43 ago on Mon Sep 12 10:27:18 2022.
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.