brotli는 구글에서 개발한 압축 알고리즘이다.텍스트 데이터에 일반적으로 gzip보다 빠르고 압축률이 좋다. Clientusing System;using System.IO;using System.IO.Compression;using System.Text;using System.Threading.Tasks;namespace SocketAsyncEventArgsClient;public static class Compression{ public static byte[] Decompress(byte[] textCompressed) { using var input = new MemoryStream(textCompressed); using var brotliStream = new BrotliStream(inp..