libvlc-zig VS http.zig

Compare libvlc-zig vs http.zig and see what are their differences.

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
libvlc-zig http.zig
1 2
16 336
- -
4.1 9.1
8 months ago 16 days ago
Zig Zig
BSD 2-clause "Simplified" License MIT License
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.

libvlc-zig

Posts with mentions or reviews of libvlc-zig. We have used some of these posts to build our list of alternatives and similar projects.

http.zig

Posts with mentions or reviews of http.zig. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-11.
  • Epoll: The API that powers the modern internet (2022)
    7 projects | news.ycombinator.com | 11 Jan 2024
    I have a somewhat popular HTTP server library for Zig [1]. It started off as a thread-per-connection (with an optional thread pool), but when it became apparent that async wasn't going to be added back into the language any time soon, I switched to using epoll/kqueue.

    Both APIs allow you to associate arbitrary data (void ) with the event that you're registering. So when you're notified of the event, you can access this data. In my case, it's a big Conn struct. It contains things like the # of requests on this connection (to enforce a configured max request per connection), a timestamp where it should timeout if there's no activity. The Conn is part of an intrusive linked list, so it has a next: Conn and prev: *Conn. But, what you're probably most curious about, is that it has a Request.State. This has a static buffer ([]u8) that can grow as needed to hold all the received data up until that point (or if we're writing the data, then the buffered data that we have to write). It's important to have a max # of connections and a max request size so you can enforce an upper limit on the maximum memory the library might use. It acts as a state machine to track up to what point it's parsed the request. (since you don't want to have to re-parse the entire request as more bytes trickle in).

    It's all half-baked. I can do receiving/sending asynchronously, but the application handler is called synchronously, and if that, for example, calls PG, that's probably also synchronous (since there's no async PG library in Zig). Makes me feel that any modern language needs a cohensive (as in standard library, or de facto standard) concurrency story.

    [1] https://github.com/karlseguin/http.zig

  • 0.11.0 Release Notes
    12 projects | news.ycombinator.com | 3 Aug 2023
    I took a year off, and one of the things I did was learn Zig. I've built a number of libraries, including one of the currently more popular HTTP server libraries (https://github.com/karlseguin/http.zig).

    A number of my libraries are used for https://www.aolium.com/ which I decided to write for myself.

    I try to write a bit every day with the benefit that I can "waste" time digging into things or exploring likely-to-fail paths.

What are some alternatives?

When comparing libvlc-zig and http.zig you can also consider the following projects:

protozig - The protozig(uana), or protocol buffers implementation in Zig

ctregex.zig - Compile time regular expressions in zig

zig-dns - Experimental DNS library implemented in zig

zeroman

mruby-zig - mruby bindings for zig

libxev - libxev is a cross-platform, high-performance event loop that provides abstractions for non-blocking IO, timers, events, and more and works on Linux (io_uring or epoll), macOS (kqueue), and Wasm + WASI. Available as both a Zig and C API.

mecha - A parser combinator library for Zig

zigself - An implementation of the Self programming language in Zig

wren-zig - wren bindings for zig

meduza - 🦎 🧜‍♀️ Zig codebase graph generator that emits a Mermaid class diagram.

comptime_hash_map - A statically initiated HashMap

zig-gorillas - A clone of the classic QBasic Gorillas written in the Zig programming language