epoll-server VS Mongoose

Compare epoll-server vs Mongoose and see what are their differences.

epoll-server

C code for multithreaded multiplexing client socket connections across multiple threads (so its X connections per thread) uses epoll (by samsquire)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
epoll-server Mongoose
3 32
8 10,602
- 1.2%
3.3 9.6
7 months ago 5 days ago
C C
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

epoll-server

Posts with mentions or reviews of epoll-server. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-20.
  • Notes on my incomplete JIT compiler
    5 projects | /r/ProgrammingLanguages | 20 Apr 2023
    I also have some epoll server code at https://github.com/samsquire/epoll-server
  • Ask HN: Resources for Building a Webserver in C?
    10 projects | news.ycombinator.com | 18 Dec 2022
    You might find my epollserver interesting.

    It multiplexes multiple clients (sockets) over a thread, so you can write an event loop in each thread and serve far more requests per thread than you could if it was one thread per client or one process per client.

    https://github.com/samsquire/epoll-server

  • Epoll is fundamentally broken (2017)
    2 projects | news.ycombinator.com | 23 Oct 2022
    I wrote an epoll echo server that multiplexes multiple network connections over threads (multiple users per thread)

    https://github.com/samsquire/epoll-server

    I also have a 1:M:N (1 scheduler thread, M kernel threads and N lightweight green threads) multithreaded userspace scheduler which multiplexes lightweight threads onto kernel threads and can preempt hot loops with minimal overhead. I rely on the fact that you can change the looping variable from another thread if you use a structure. Preemptive interruption is very useful for the illusion of multitasking. That's why I call it a userspace scheduler.

    I think the epoll-server which is kind of similar to what libuv does and the userspace scheduler could be combined into an application server.

    I also wrote a multithreaded actor implementation in Java. Threads can communicate with each other between 60 million - 100 million messages a second. The epoll-server uses a multiconsumer multiproducer lockless RingBuffer.

    https://GitHub.com/samsquire/multicersion-concurrency-contro...

    I think the core fundamentals of building a performant application server should be done once and reused for each application.

    I want to also split the threading used by recv and send of a socket so that we have a 1:R/S per socket:N scheduling (1 scheduler thread, 1 Recv thread, 1 send thread per socket). So you can send while you receive and receive while you send. True multiplexing!

Mongoose

Posts with mentions or reviews of Mongoose. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-25.

What are some alternatives?

When comparing epoll-server and Mongoose you can also consider the following projects:

libreactor - Extendable event driven high performance C-abstractions

libwebsockets - canonical libwebsockets.org networking library

picohttpparser - tiny HTTP parser written in C (used in HTTP::Parser::XS et al.)

C++ REST SDK - The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.

preemptible-thread - How to preempt threads in user space

libcurl - A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features

assembler - amd64 assembler

POCO - The POCO C++ Libraries are powerful cross-platform C++ libraries for building network- and internet-based applications that run on desktop, server, mobile, IoT, and embedded systems.

loti - Lord of the io_uring: io_uring tutorial, examples and reference

µWebSockets - Simple, secure & standards compliant web server for the most demanding of applications

websrv - A simple C web service and REST framework

SteamVR-for-Linux - Issue tracker for the Linux port of SteamVR