How to Install and Uninstall lua-cqueues.x86_64 Package on Oracle Linux 9

Last updated: May 19,2024

1. Install "lua-cqueues.x86_64" package

Please follow the instructions below to install lua-cqueues.x86_64 on Oracle Linux 9

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

2. Uninstall "lua-cqueues.x86_64" package

Learn how to uninstall lua-cqueues.x86_64 on Oracle Linux 9:

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

3. Information about the lua-cqueues.x86_64 package on Oracle Linux 9

Last metadata expiration check: 2:36:11 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : lua-cqueues
Version : 20200603
Release : 6.el9
Architecture : x86_64
Size : 150 k
Source : lua-cqueues-20200603-6.el9.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.