How to Install and Uninstall golang-github-inconshreveable-muxado-dev Package on Ubuntu 21.04 (Hirsute Hippo)

Last updated: July 04,2024

1. Install "golang-github-inconshreveable-muxado-dev" package

In this section, we are going to explain the necessary steps to install golang-github-inconshreveable-muxado-dev on Ubuntu 21.04 (Hirsute Hippo)

$ sudo apt update $ sudo apt install golang-github-inconshreveable-muxado-dev

2. Uninstall "golang-github-inconshreveable-muxado-dev" package

Please follow the instructions below to uninstall golang-github-inconshreveable-muxado-dev on Ubuntu 21.04 (Hirsute Hippo):

$ sudo apt remove golang-github-inconshreveable-muxado-dev $ sudo apt autoclean && sudo apt autoremove

3. Information about the golang-github-inconshreveable-muxado-dev package on Ubuntu 21.04 (Hirsute Hippo)

Package: golang-github-inconshreveable-muxado-dev
Architecture: all
Version: 0.0~git20140312.0.f693c7e-2.1
Priority: extra
Section: universe/devel
Source: golang-github-inconshreveable-muxado
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Go Packaging Team
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 129
Filename: pool/universe/g/golang-github-inconshreveable-muxado/golang-github-inconshreveable-muxado-dev_0.0~git20140312.0.f693c7e-2.1_all.deb
Size: 26584
MD5sum: 63f722edd7dee7a934797e8d1cccd6d0
SHA1: 225c6dc2a387155f167b73af2495f680bee66a7b
SHA256: ed576a44ff2254a9749842e3e6f0945b390c30d7abd73f03f1a66ac06d7daeda
SHA512: da88513e4f7da148cc2874950d7d88e9cc4885d7b168933d09e496107b2fb69f2f44d1c05d890b756ad546281e80c8925d5de15c31d4308b1e76322b47c7dea5
Homepage: https://github.com/inconshreveable/muxado
Description-en: Stream multiplexing for Go
What is stream multiplexing?
.
Imagine you have a single stream (a bi-directional stream of bytes) like a TCP
connection. Stream multiplexing is a method for enabling the transmission of
multiple simultaneous streams over the one underlying transport stream.
.
What is muxado?
.
muxado is an implementation of a stream multiplexing library in Go that can be
layered on top of a net.Conn to multiplex that stream. muxado's protocol is not
currently documented explicitly, but it is very nearly an implementation of the
HTTP2 framing layer with all of the HTTP-specific bits removed. It is heavily
inspired by HTTP2, SPDY, and WebMUX.
.
How does it work?
.
Simplifying, muxado chunks data sent over each multiplexed stream and transmits
each piece as a "frame" over the transport stream. It then sends these frames,
often interleaving data for multiple streams, to the remote side. The remote
endpoint then reassembles the frames into distinct streams of data which are
presented to the application layer.
.
What good is it anyways?
.
A stream multiplexing library is a powerful tool for an application developer's
toolbox which solves a number of problems:
.
- It allows developers to implement asynchronous/pipelined protocols with
ease. Instead of matching requests with responses in your protocols, just
open a new stream for each request and communicate over that.
- muxado can do application-level keep-alives and dead-session detection so
that you don't have to write heartbeat code ever again.
- You never need to build connection pools for services running your
protocol. You can open as many independent, concurrent streams as you need
without incurring any round-trip latency costs.
- muxado allows the server to initiate new streams to clients which is
normally very difficult without NAT-busting trickery.
.
This package contains the source.
Description-md5: 55cced1b0096cfb205573994afd1b6d2

5. The same packages on other Linux Distributions