Low-RAM ASGI HTTP server with a Zig backbone.
Project description
saltare
Low-RAM ASGI HTTP server with a Zig backbone. An alternative to uvicorn for FastAPI deployments where memory budget matters more than raw throughput.
Status: 1.3.0 — lazy TLS + ~40 operational knobs, leanest of three. Production target is Linux x86_64. v1.3 lands ~30 orthogonal features. RAM-floor cuts (default-on): lazy OpenSSL via
dlopen,mallopt(M_ARENA_MAX=1, M_TRIM_THRESHOLD=64K, M_TOP_PAD=64K, M_MMAP_THRESHOLD=64K),MALLOC_ARENA_MAX=1in the CLI re-exec env, gatedPYTHONOPTIMIZE=2auto re-exec, URL decode moved to Zig (dropsurllib.parseimport),tracebacklazy-imported (drops ~150 KiB),TCP_NODELAY+SO_KEEPALIVEon every accepted socket, periodicgc.collect(2)+malloc_trim(0)after 3 s of idle,gc.freeze()re-trigger inside the idle-maintenance pass. Operational knobs (opt-in, zero RAM when off):health_path,cors_preflight_allow_all, IPv6 listen (auto-detect fromhost), per-IP rate limiter,max_connections_per_ip,max_connection_lifetime,tracemalloc_path,favicon_204,access_log_path,request_id_header,server_timing,listen_backlog,tcp_keepidle/tcp_keepintvl/tcp_keepcnt,tcp_user_timeout_ms,auto_raise_nofile,tls_session_cache_size,startup_request(warm app),server_header(white-label / hide identity),proxy_protocol(v1 + v2 binary auto-detect — required behind L4 LBs), systemd socket activation (LISTEN_FDS=1),SIGUSR1JSON stats dump,workers=0auto-detectscpu_count(). Bug fixes / RFC compliance: WebSocket subprotocol (Sec-WebSocket-Protocolwas always being dropped), HTTP trailers (http.response.trailerswas silently ignored), HTTP/1.1 mandatoryHostvalidation, header-nametcharvalidation (RFC 7230 §3.2.6 — defends against\0/CRLF smuggling), HEAD method body strip (RFC 7230 §3.3.3 — same headers as GET, no body). Combined: saltare is the leanest of the three benchmarked ASGI servers — 46.4 / 45.4 / 45.4 MiB, vs uvicorn 49.30 / 49.51 / 54.68 MiB and Granian 57.18–57.71 MiB on the same host. Tests 66 passing core + 10 new intests/test_v13.py. Most v1.3 features are opt-in: defaults match v1.2.2 behaviour at zero RAM cost.
Why
uvicorn is fast and battle-tested, but a typical worker (Python + asyncio + FastAPI + your code) sits around 60–90 MB resident before the first request. A meaningful chunk is asyncio bookkeeping: Transport/Protocol/Task/Future objects per connection, plus Python bytes buffers.
saltare keeps these in Zig:
| Layer | uvicorn | saltare |
|---|---|---|
| Event loop | asyncio (Python) | epoll / kqueue (Zig) |
| Socket I/O | asyncio Transport | direct read/write (Zig) |
| HTTP/1.1 parser | httptools (C) |
hand-rolled (Zig) |
| Per-connection state | Python objects (~KB) | Zig structs (~hundreds B) |
| ASGI app callable | Python | Python (unchanged) |
Python only wakes up to dispatch a request to the user's ASGI app.
Architecture
PyInit__core
│
┌──────────────────────┴──────────────────────┐
│ │
[ Python ] [ Zig core ]
saltare.run(app) ─── _core.serve ───► bind / listen
saltare CLI epoll accept loop
HTTP/1.1 parser
chunked decoder
TLS via OpenSSL
WebSocket framing
timer wheel (idle
timeouts)
│
dispatch_request ◄─────┘
app(scope, receive, send) ─────────────────► send()/receive()
backed by Zig sockets
Benchmarks
Run with make bench (Docker; no Zig or Python needed on the host). The harness boots each server with the same FastAPI app, takes a /proc/<pid>/status reading at idle, drives a load with httpx, and samples VmRSS every 10 ms during the load to capture peaks. Granian (Rust + Python ASGI) is included as a third comparison point alongside uvicorn so saltare-vs-uvicorn isn't taken in isolation.
Optional extra workloads (off by default — pass through docker run):
# A 5000-conn idle-keepalive workload + a 1000-request /large workload.
docker run --rm saltare-bench python -m benchmarks.bench \
--high-conc-idle 5000 --large-requests 1000
# Increase the /large response size beyond 100 KiB (default).
docker run --rm -e BENCH_LARGE_BYTES=1048576 saltare-bench \
python -m benchmarks.bench --large-requests 200
Results on x86_64 (manylinux_2_28_x86_64 inside Docker, CPython 3.14.4, FastAPI 0.136, pydantic 2.13, uvicorn 0.x plain — no [standard] extras, granian 2.x ASGI), v1.3.0 with default settings (single worker except where noted). Same host, same image. Each server's launcher imports the FastAPI app at module level so RSS readings reflect the same import footprint — without that normalisation, granian's master appears artificially small (~37 MiB) because it spawns a worker subprocess that holds the actual app, and the bench harness reads the master's /proc/<pid>/status.
Sequential — 1 client, 1000 requests
| server | idle RSS | RSS after load | peak RSS | reqs ok | rps |
|---|---|---|---|---|---|
| saltare | 46.50 MiB | 46.57 MiB | 46.57 MiB | 1000 | 805 |
| uvicorn | 48.88 MiB | 48.93 MiB | 48.93 MiB | 1000 | 1106 |
| granian | 57.68 MiB | 57.68 MiB | 57.68 MiB | 1000 | 1081 |
Concurrent — 100 clients × 20 requests (2000 total)
| server | idle RSS | RSS after load | peak RSS | reqs ok | rps |
|---|---|---|---|---|---|
| saltare | 45.29 MiB | 45.62 MiB | 45.63 MiB | 2000 | 1848 |
| uvicorn | 48.83 MiB | 49.92 MiB | 49.92 MiB | 2000 | 1691 |
| granian | 56.16 MiB | 56.16 MiB | 56.16 MiB | 2000 | 1723 |
Idle keep-alive — 500 connections held open
| server | idle RSS | RSS after load | peak RSS | reqs ok | conn rate |
|---|---|---|---|---|---|
| saltare | 45.07 MiB | 45.43 MiB | 45.43 MiB | 500 | 1352 |
| uvicorn | 48.83 MiB | 54.21 MiB | 54.21 MiB | 500 | 1587 |
| granian | 57.21 MiB | 57.21 MiB | 57.21 MiB | 500 | 1331 |
Multi-worker idle — Pss across the whole cluster (saltare only)
| workers | observed | master Pss | Σ workers Pss | total Pss | vs naive N× single |
|---|---|---|---|---|---|
| 1 | — | 40.32 MiB | 0.00 MiB | 40.32 MiB | — |
| 4 | 4 | 14.32 MiB | 39.57 MiB | 53.89 MiB | 161.27 MiB (−67%) |
Pss (Proportional Set Size, from /proc/<pid>/smaps_rollup) accounts for shared CoW pages — summing across master + N workers gives the real physical RAM of the cluster, not the inflated Σ RSS you'd get by counting each shared page N times. The "naive N× single" column is what the cluster would cost if every worker was a fresh independent process (no CoW / no gc.freeze()); saltare sits at 34% of that — 4 workers add only ~4.85 MiB Pss per worker beyond the first, vs tripling the floor. Granian uses a different supervision model (multiprocessing.spawn, not pre-fork-CoW), so the harness doesn't include it in this column.
saltare is the leanest of the three on every workload. v1.3 ships ~17 orthogonal features, most opt-in and zero-RAM-cost when off. The default-on changes (lazy TLS,
malloptarena cap withMALLOC_ARENA_MAX=1injected into the CLI re-exec env, gatedPYTHONOPTIMIZE=2re-exec,TCP_NODELAY+SO_KEEPALIVEon accept, URL decode in Zig) trim the floor; the opt-in features (health/CORS/favicon intercepts, rate limiter, tracemalloc, request-id, server-timing, trailers, access-log file, per-IP conn cap, IPv6) all default off. Saltare leads granian by 10.8–11.7 MiB and uvicorn by 2.2–9.0 MiB on this run. Throughput is competitive — saltare beats both peers on concurrent, trails uvicorn slightly on sequential. Where saltare's architectural advantage shows most: idle-keepalive 500 conns adds +0.23 MiB to saltare (~470 B/conn) vs uvicorn's +5.38 MiB (~11 KiB/conn) and granian's 0.00 MiB — only uvicorn pays per-connection cost at idle.
v1.2.2 vs v1.2.1 on the same host (saltare-only A/B)
To isolate v1.2.2's effect from the FastAPI / Python version bump that lifted the floor across both servers, the bench harness was run twice in a row, same Docker image, swapping only saltare's source.
| workload (saltare peak RSS) | v1.2.1 baseline | v1.2.2 | delta |
|---|---|---|---|
| sequential | 45.70 MiB | 46.43 MiB | +0.73 MiB |
| concurrent | 45.44 MiB | 45.12 MiB | −0.32 MiB |
| idle-keepalive | 45.05 MiB | 44.59 MiB | −0.46 MiB |
| 1-worker Pss | 39.57 MiB | 40.47 MiB | +0.90 MiB |
| 4-worker per-extra Pss | 4.64 MiB | 4.51 MiB | −0.13 MiB |
Mixed signs, all within run-to-run noise (~±1 MiB on the worker baseline; glibc heap layout shifts between fresh python -m benchmarks.bench invocations). v1.2.2 is not a benign-workload RAM reduction — the gains land under streaming / WebSocket abuse that the harness doesn't exercise. Absolute rps in both runs is roughly half the v1.2.0 README numbers (sequential ~1000–1300 here vs 2447 there) because the host was a busy developer laptop rather than a clean CI box; the saltare/uvicorn ratio is unchanged.
Optional bench workloads
The harness now supports two extra workloads off by default. Pass through docker run:
# Large-response workload: 1000 GETs against /large (default 100 KiB body).
docker run --rm saltare-bench python -m benchmarks.bench --large-requests 1000
# Crank the response size to 1 MiB:
docker run --rm -e BENCH_LARGE_BYTES=1048576 saltare-bench \
python -m benchmarks.bench --large-requests 200
# 5000-conn idle-keepalive (needs `ulimit -n` headroom on the host):
docker run --rm --ulimit nofile=65535 saltare-bench \
python -m benchmarks.bench --high-conc-idle 5000
These exercise the v1.2.2 streaming backpressure (large-response) and the per-connection slope at scale (5000 idle conns) that the default workload doesn't touch.
Read this honestly:
- Per-connection slope vs uvicorn: 500 idle connections cost saltare +0.24 MiB (~490 B/conn) vs uvicorn's +5.37 MiB (~11 KiB/conn). That's a ~22× per-connection memory saving vs uvicorn for a realistic workload (clients that hold connections open between bursts of activity). Granian adds essentially nothing (
+0.00 MiB), so on per-conn slope saltare and granian are both comparable; saltare leads on the floor and on uvicorn-vs-anyone. - The reason: saltare's
pool.zigbundles the 16 KiB read buffer and the per-request headers array into a single pool node, returned to a free list as soon as a keep-alive connection goes idle. uvicorn's asyncio Transport keeps its per-connection buffers and Protocol/Task state alive for the lifetime of the socket. - The floor dropped ~2 MiB between v0.12.0 and v0.12.1 thanks to a
malloc_trim(0)call after lifespan startup — glibc returns the fragmented heap left over from the FastAPI/Pydantic import chain to the OS in one syscall. Sequential idle went from 45.56 MiB to 43.15 MiB. - Throughput parity (concurrent): saltare 3790 rps vs uvicorn 3951 rps — within ~4%. The remaining gap is primarily
httptools(uvicorn's tuned C parser) and uvicorn's tighter asyncio integration vs the bridge-driven dispatch. - Streaming dispatch (v0.12) cost a few percent on sequential because every HTTP request now runs as a long-lived asyncio Task with a per-request
recv_queueandoutgoinglist. Sequential RPS sits at ~2316 (was 2599 pre-streaming); concurrent and idle-keepalive workloads were largely unaffected because they were already gated by other costs. The new architecture pays off as soon as response sizes go up: a streaming endpoint that emits 10 MiB across 100 chunks now keeps RSS flat instead of buffering the whole 10 MiB in Pythonbytes— a saving the bench harness above doesn't measure (its FastAPI app returns ~30 bytes). - v0.16 buffer adaptivity is also bench-invisible. Read buffers shrink from 16 KiB → 4 KiB for the typical short request, saving ~12 KiB per in-flight request — but the bench's FastAPI app receives sub-1 KiB requests, so even the v0.15 16 KiB buffer was nearly empty. Wins show up in: services with high concurrency of small requests (savings compound across hundreds in-flight) and bursty traffic with valleys (
MADV_DONTNEEDreturns long-idle committed pages to the kernel after 30 s, so RSS shrinks back toward the floor instead of staying at peak forever). - The remaining ~42 MiB floor is Python + FastAPI itself. No userland server can shrink that without changing what the user app loads. Python 3.14 raises this floor a few MiB versus 3.12 because 3.14 imports more stdlib eagerly. Setting
MALLOC_ARENA_MAX=2in the environment shaves another 5–15 MiB on multi-threaded glibc systems (see Production deployment).
Where saltare's architectural win shows up most: long-lived idle connections (the WebSocket and keep-alive workloads above), very high concurrency (10k+ open sockets), and large streamed responses (file downloads, SSE, JSON over MB).
Roadmap
-
v0.1.0 — Build pipeline.
saltare._coreextension built with Zig viascikit-build-core. Listening socket + accept loop in Zig. Single fixed HTTP response. Local Docker build + cibuildwheel CI. -
v0.2.0 — HTTP/1.1 request parser in Zig (request line, headers,
Content-Lengthframing). Server echoes method + target back so the parser is observable end-to-end. Zero allocations per request. -
v0.3.0 — ASGI dispatcher. Persistent
asyncioloop reused across requests; per-requestloop.run_until_complete. Zig calls into Python via the C API only at dispatch time. FastAPI runs end-to-end (path params, JSON bodies, 404). No lifespan, no keep-alive, no streaming yet. -
v0.4.0 — Non-blocking event loop (epoll on Linux). Per-connection state machine in Zig with heap-allocated structs. Multiple connections progress in parallel; ASGI dispatch is the GIL serialization point. macOS (kqueue) raises
@compileErroruntil v0.4.x. -
v0.5.0 — HTTP/1.1 keep-alive. Persistent connections reset their state machine in place (read buffer compacted, write buffer freed, epoll switched back to read interest). Pipelined requests handled inline without an extra epoll round-trip.
-
v0.6.0 — Pooled read buffers. Idle keep-alive connections release their 16 KiB read buffer back to a shared pool; the next read event re-acquires one. RSS now scales with in-flight requests, not with open connections. Result: ~5× less per-connection memory than uvicorn at idle.
-
v0.7.0 — ASGI lifespan protocol. The dispatcher creates a long-lived asyncio Task that drives the app through
lifespan.startupbefore the I/O loop accepts connections, and throughlifespan.shutdownafter it stops. Apps usingFastAPI(lifespan=...)now get their startup/shutdown hooks executed. Apps that raise on lifespan scope (no support) are tolerated. -
v0.8.0 — Chunked Transfer-Encoding for request bodies. Decoder runs in place over the read buffer; resumable across kernel reads. Streaming response bodies (true chunked output) still buffer in Python and emit Content-Length — that lands when the dispatcher gets a callback path back into Zig.
-
v0.9.0 — TLS termination via OpenSSL. Pass
ssl_certfile=andssl_keyfile=tosaltare.run()to serve HTTPS. The connection state machine gains ahandshakingphase;doRead/doWriteroute through SSL_read/SSL_write and translate WANT_READ/WANT_WRITE into epoll interest changes. SSL_pending drained between keep-alive cycles.auditwheelbundles libssl/libcrypto into the wheel — self-contained, no host OpenSSL dependency. Single-cert/single-key, server-only (no mTLS, no SNI, no ALPN). -
v0.10.0 — WebSockets. RFC 6455 handshake, single-frame text/binary messages, ping auto-pong, close echo. Frames unmasked in place over the existing 16 KiB read buffer; outbound frames concatenated onto the same
write_bufthat HTTP responses use. Out of scope: continuation frames, message-level fragmentation, per-message deflate. -
v0.11.0 — Per-connection idle timeouts via a hashed timer wheel (
src/zig/timer.zig). Four configurable deadlines (header_timeout,keep_alive_timeout,body_timeout,write_timeout) with defaults of 5/5/30/30 seconds. Slowloris and slow-body attacks are now reaped instead of holdingConnectionstructs indefinitely. Wheel uses 128 buckets of 1 second; nodes are intrusive inConnection(24 B / conn) so arming and cancelling are allocation-free O(1). WS connections are exempt — long-lived idle sockets are expected there; ping/pong-driven WS keepalive lands post-v0.11. -
v0.12.0 — Streaming response bodies. Each HTTP request runs as a long-lived asyncio Task with its own
recv_queueandoutgoinglist; the app'ssend({type: "http.response.body", more_body: True/False})calls flow chunk-by-chunk through the bridge into Zig'swrite_bufinstead of being buffered into a single Pythonbytes. When the app does not declare a Content-Length, saltare addsTransfer-Encoding: chunkedautomatically. Concurrency uses a global "stalled list" of connections whose Task is parked on framework-internal awaits (e.g. FastAPI middleware chains): the main loop runs one global asyncio pump per iteration to advance every parked Task in lockstep, then drains each one — no per-connection multi-pumping, no level-triggered EPOLLOUT spin. Request bodies are still capped to the 16 KiB read buffer (request-side streaming lands in v0.12.x). -
v0.12.1 — Per-connection RAM polish. The
[64]Headerarray previously inlined intoConnection(~2 KiB) is now bundled into the samepool.zigBufferthat holds the read data, so it's released atomically when the connection goes idle: idle keep-alive cost drops from ~2 KiB to ~390 B per connection, taking the per-conn advantage over uvicorn from ~5× to ~28×. Amalloc_trim(0)call afterlifespan.startupreturns ~2 MiB of glibc heap fragmentation (left over from FastAPI/Pydantic imports) to the OS — the sequential-idle floor dropped from 45.56 MiB to 43.15 MiB. README gains a "Production deployment" section recommendingMALLOC_ARENA_MAX=2for another 5–15 MiB. -
v0.13.0 — Resource caps +
Expect: 100-continue. NewLimitsstruct (max_request_body,max_concurrent_connections,max_keepalive_requests) wired intoserve()and the CLI. Body cap fires 413 on declaredContent-Lengthoverflow and on incremental chunked-decode growth. Connection cap accepts overflow sockets (to drain the listen backlog) and immediately closes them. Keepalive-requests cap forcesConnection: closeon the Nth response, recycling pymalloc arenas.Expect: 100-continuewrites the interim response before reading the body, except when the declared body would exceed the cap (in which case the client gets a 413 directly). Caps add zero RAM cost in benign workloads; under adversarial load they convert the architectural advantage into a hard guarantee. -
v0.14.0 — Graceful shutdown + ASGI exception isolation. New
g_drainingatomic flag; the SIGTERM/SIGINT handler sets it (and a second signal promotes to immediate force-exit). Main loop, on first observing drain mode, removes the listen fd from epoll (stops accepting), stamps a deadline, and continues processing in-flight requests — exit happens wheng_active_connsreaches zero orshutdown_timeout(default 30 s) elapses. Idle keep-alive connections drain naturally viakeep_alive_timeout. After the loop exits,lifespan.shutdownruns as before, then the process exits 0. App exceptions during dispatch are caught at the bridge: pre-headers raises produce a synthesized 500, mid-stream raises close the connection — server keeps serving subsequent requests. Tests now 44/44 (5 new intest_shutdown.py, 3 of which exercise real SIGTERM viasubprocess). -
v0.15.0 — Observability + UDS.
Observabilitystruct (metrics_path,access_log,proxy_headers) all opt-in.metrics_path(e.g./metrics) intercepts requests in Zig and serves Prometheus text from atomic counters (saltare_open_connections,saltare_in_flight_requests,saltare_requests_total,saltare_responses_4xx_total/_5xx_total,saltare_bytes_sent_total/_received_total,saltare_process_resident_memory_bytesfrom/proc/self/statuson Linux).access_logemits a JSON line per completed request to stderr from a 4 KiB stack-buffered writer (status line parsed once from the wire bytes; bytes/latency tracked inConnection); a singlewrite(2)keeps lines atomic.proxy_headerslets the dispatcher readX-Forwarded-For(leftmost IP intoscope["client"]) andX-Forwarded-Proto(intoscope["scheme"]); only enable behind a trusted proxy.uds_pathmakesserve()bind anAF_UNIXsocket instead of TCP — the bind path is unlinked on shutdown so restarts don't fail withEADDRINUSE. All four off by default; bench numbers indistinguishable from v0.14. Tests now 50/50 (6 new intest_observability.py). -
v0.16.0 — Adaptive read buffer +
MADV_DONTNEED. The single 16 KiB pool from v0.6–v0.15 splits into two free lists: a 4 KiB primary covering the typical short request, and a 16 KiB overflow used either as the initial buffer for big payloads or as the upgrade target when a partial parse fills the small one (in-flight bytes are memcpy'd across;parsed.headersis invalidated and re-parsed because it pointed into the small buffer's headers array).Buffer.databecomes a[]u8slice (page-allocated via mmap so the OS can later reclaim its pages);Buffer.released_at_nsrecords when a buffer entered the free list. Each main-loop iteration callspool.sweepIdle(monoNs()), which walks both free lists and issuesMADV_DONTNEEDfor any block idle >30 s — page-aligned mmaps mean the kernel actually drops the physical pages. Linux only; macOS short-circuits the sweep. Bench numbers are within noise of v0.15 (the FastAPI bench app sends sub-1 KiB requests, so even the v0.15 16 KiB buffer was nearly empty); the wins manifest in real-world bursty traffic and high-concurrency-low-payload services.Headeroffset compression deferred — too much API churn for the marginal saving. -
v0.17.0 — Stability + Python RAM polish. Replaced the per-request
asyncio.Queuein_HttpStatewith a single-slot mailbox + on-demandFuture: the typical request that doesawait receive()once never allocates a Queue object, an internal deque, or a getters list. Saves ~300 B of GC churn per request, lower transient peak under concurrency, and conceptually simpler dispatcher (fewer asyncio internals to reason about). Also fixed thetest_fastapi_lifespan_startup_runsflake by adding a small retry around the first httpx call — the race was FastAPI's first-dispatch warm-up trip, not saltare itself, and 2 retries make it deterministic in CI. The pre-alpha status note now states explicitly that production is x86_64 Linux — macOS dev-builds still work for everything except the actual server (kqueue still@compileError). -
v0.18.0 — WebSocket keepalive + Python RAM polish. Server now sends an empty
pingframe everyws_keepalive_timeoutseconds (default 20) on each open WS; if no inbound frame (incl. pong) is observed in 2× that window, the connection is reaped. Implemented by reusing the existing timer wheel: WS upgrade arms it, every inbound frame updateslast_activity_ns, andfireExpired's WS branch is now ping-or-teardown rather than just teardown. Plus two Python-side wins: (1) header names are lowercased in Zig in-place insidebuildHeadersListso_dispatcher.pydrops the per-request.lower()list-comprehension and the per-header tuple rebuild it forced; (2) a 16-entry PyBytes cache for common header names (host, user-agent, content-type, etc) avoidsPyBytes_FromStringAndSizeon every cached header. Net: first run where saltare's concurrent rps (4006) edges past uvicorn's (3988), and ~0.2 MiB shaved across all three bench workloads. -
v1.0.0 — Pre-fork multi-worker. New
src/zig/master.zigmodule supervises N forked workers viapause()+waitpid(). Master flow: bind+listen via the existingbindAndListen; fork N children that each run the v0.18 single-worker flow (lifespan startup → accept loop on the inherited fd → lifespan shutdown →_exit); supervise. Children callprctl(PR_SET_PDEATHSIG, SIGTERM)so an SIGKILL'd master doesn't leave orphan workers. v1.0 policy on worker death: propagate shutdown to the rest, return — let the supervisor restart the pod. Each worker keeps its own counters;metrics_pathreports per-worker (aggregate across workers in your scraper). Newworkerskwarg onsaltare.run()and--workers NCLI flag (default 1, single-worker behaviour unchanged). Tests intests/test_multiworker.pyuse subprocess +/proc/<master>/task/.../childrento verify worker spawn, request serving, SIGTERM drain, and unexpected-worker-death propagation. -
v1.1.0 — Multi-worker RAM polish.
gc.freeze()is called once in the master right before the fork loop (and once per single-worker dispatch path, after lifespan startup) so CPython's cyclic-GC bookkeeping doesn't dirty CoW pages on each worker's first sweep — verified: 4 workers cost 51 MiB Pss instead of the naive 150 MiB (~66% saved).http.max_headerslowered from 64 to 32 (typical request has <20; 31 KiB → 1 KiB per active pool buffer worth of[Header]Nstorage). StaticasgiASGI sub-dict cached as a module-level constant, shared across all requests instead of re-allocated. Bench harness gains amulti-worker idleworkload that reports Pss across master + workers, with a "naive N× single" comparison column. -
v1.2.0 — Python hot-path polish. Three orthogonal cuts to per-request work in
_dispatcher.py: (1) module-level free-list pool of_HttpStateinstances with areset(...)method that rewrites every slot — saves the slot-allocation step + GC-tracking overhead per request and reuses theoutgoinglist. (2)receiveandsendcallables converted from per-request closures to bound methods (_HttpState._receive,_HttpState._send) — half the per-instance memory of a closure cell, no per-instance compile, plays well with the pool. (3) Pre-built byte-string constants for the wire format:_SERVER_LINE,_CONNECTION_KEEPALIVE_LINE,_CONNECTION_CLOSE_LINE,_TRANSFER_ENCODING_CHUNKED_LINE,_CHUNKED_TERMINATOR,_CRLF, plus a precomputed status-line cache for every reason code in_REASONS. Each response now references shared bytes instead of rebuildingb"server: " + _SERVER_HEADER + b"\r\n"etc. Net: sequential rps 2335 → 2447 (+4.3%), concurrent peak −0.3 MiB. Multi-worker numbers unchanged from v1.1 (these wins are per-request, multi-worker is per-process). -
v1.2.2 — Worst-case RAM caps + bench / CI / production polish. Source caps: (1) HTTP send-yield backpressure —
_HttpState._sendtracks bytes appended tooutgoingsince the last drain; once the running total crosses_HTTP_SEND_YIELD_BYTES(64 KiB), the next intermediateawait send(...)does anawait asyncio.sleep(0)so the asyncio loop hands control back. Zig's main-loop stalled-pump path harvests viahttp_dispatch_drain, the counter resets, and the app keeps producing — per-task accumulated RAM is now bounded to ~one threshold's worth no matter how many sends a streaming endpoint chains in a row. The yield is skipped on the final chunk (more_body=False) so plain request/response apps never pay it. (2) WebSocket outbound 1 MiB cap —_WsState.outgoing_bytesis a running total; once_WS_OUTGOING_MAX_BYTESis exceeded the connection is markedclosedand further sends drop. (3)_HTTP_POOL_MAXbumped 32 → 128. (4) epoll event array 128 → 64. Bench delta vs v1.2.1 same-host: mixed-sign, within ±1 MiB noise — these are caps, not benign-workload RAM cuts. Plus tooling: (5) Granian added as a third bench comparison point, which surfaced a fact the saltare-vs-uvicorn comparison was hiding: Granian sits ~10–12 MiB below saltare on the floor. Closing that gap is on the v1.3 roadmap. (6)Dockerfile.productionwith jemalloc preloaded +MALLOC_ARENA_MAX=2,make production-image. (7)make valgrindtarget with CPython suppressions for periodic C-API leak checks acrossbridge.zig. (8) Bench harness extra workloads:--large-response,--high-conc-idle 5000. (9) README CoW eager-import doc — workers only stay lean if all imports happen in the master before the fork, and the typical FastAPI footgun (lazyimportin route handlers) is now called out. LTO on the Zig side was attempted but rolled back — Zig 0.16'sBuild.ModuleandBuild.Step.Compileno longer expose an LTO field, and-fLLVM-ltois not wired throughb.standardOptimizeOption; will revisit when a public API lands. -
v1.3.0 — Lazy-loaded TLS + ~25 operational knobs, leanest of three. RAM-floor cuts (default-on): (1) OpenSSL link gone at build time —
tls.zigdeclares OpenSSL types asopaque {}, hard-codes ABI constants, and ships a function-pointer table populated bydlopen+dlsymon firstnewContext()call. Plain-HTTP deployments never load libssl/libcrypto. (2)mallopt(M_ARENA_MAX, 1)at module init caps glibc's per-thread arenas. ThesaltareCLI re-exec also injectsMALLOC_ARENA_MAX=1into the child env so even CPython's bootstrap allocations land in a single arena. (3)PYTHONOPTIMIZE=2auto re-exec strips docstrings + asserts from FastAPI / Pydantic / Starlette —SALTARE_NO_OPTIMIZE=1opts out, and_is_saltare_main_entry()gates the re-exec to only fire when this module is the actual main entry. (4) URL decode moved to Zig (http.urlDecode) —_dispatcher.pyno longer importsurllib.parse. (5)TCP_NODELAY+SO_KEEPALIVEon accept — small-response latency loses the Nagle delay; dead peers (NAT timeouts, mobile drops) get reaped by kernel keepalive. Operational knobs (opt-in, zero RAM when off): (6) Health intercept (health_path). (7) CORS preflight intercept (cors_preflight_allow_all). (8) IPv6 listen (auto-detect fromhost,IPV6_V6ONLY=1). (9) Per-IP rate limiter (rate_limit_per_sec,rate_limit_burst) — 4096-IP bounded LRU table, honorsproxy_headers(X-Forwarded-Forleftmost when behind trusted proxy). (10)tracemalloc_pathauto-starts tracking + serves top-30 dump. (11)favicon_204— Zig answersGET /favicon.icowith 204. (12)max_connections_per_ip— TCP-RST over-cap peers; shares the rate-limit table so the per-IP cap costs no extra memory beyond the limiter that's already there. (13)access_log_path— JSON log lines to a file viaO_APPEND | O_CLOEXECinstead of stderr. (14)request_id_header— auto-generates an 8-byte hex ID per request, exposes viascope["x-request-id"], echoes as response header. (15)server_timing=True—Server-Timing: total;dur=<ms>on every response. Tier-3 ops + RAM additions: (16) Aggressivemalloptthresholds (M_TRIM_THRESHOLD,M_TOP_PAD,M_MMAP_THRESHOLDall clamped to 64 KiB at module init) so heap fragmentation returns to the OS more eagerly. (17) Idle-maintenance tick — after 3 s with zero events and zero in-flight requests, the main loop runsgc.collect(2)+gc.freeze()+malloc_trim(0)to recover memory accumulated during the previous burst. Cheap when steady-state, capped to once per idle window. (18)SIGUSR1JSON stats dump to stderr ({"event":"saltare.stats","open_conns":N,"in_flight":M,"requests_total":...,"rss_kib":...,"rl_table_size":...}) — operational diagnostic without an HTTP probe. (19)listen_backlogconfigurable (default 256). (20)tcp_keepidle/tcp_keepintvl/tcp_keepcnttunable cadence on accepted sockets — kernel defaults are too generous for mobile / NAT-heavy fronts. (21)X-Real-IPhonored alongsideX-Forwarded-For(nginx convention; X-Real-IP wins when both are present). (22) HTTP/1.1 mandatoryHost:enforcement — missing or emptyHostheader gets a 400 per RFC 7230 §5.4. (23) systemd socket activation — auto-detectsLISTEN_PID=$$+LISTEN_FDS=1and inherits fd 3 instead of binding; the env is unset so forked workers don't double-activate. (24) HAProxy PROXY-protocol v1 — whenproxy_protocol=True, the first line of every accepted connection is parsed asPROXY <fam> <src> <dst> <sport> <dport>\r\n(TCP4 / TCP6 / UNKNOWN); src replaces the TCP peer for rate-limit + access-log, so saltare gets real client IPs behind L4 LBs (AWS NLB, GCP TCP LB, HAProxy v1) that strip HTTP-level headers. (25) WebSocket subprotocol finally honored (real bug — was always returningscope["subprotocols"]=[]). (26) HTTP trailers (http.response.trailers) emitted as chunked-encoding trailer block per RFC 7230. Tier-4 hardening + RFC additions: (27) PROXY-protocol v2 binary auto-detect at accept (AWS NLB/ALB default, modern HAProxy). (28) HEAD method body strip — same headers as GET, no body (RFC 7230 §3.3.3). (29) Headertcharvalidation — RFC 7230 §3.2.6 reject\0/CRLF in header names. (30) Connection age cap (max_connection_lifetime_secs) — wall-clock connection budget. (31)startup_request— internalGET /after lifespan startup to warm FastAPI route compilation + pydantic validators. (32) TLS session cache (tls_session_cache_size). (33) TCP_USER_TIMEOUT — sub-second failure detection. (34)auto_raise_nofile—setrlimit(RLIMIT_NOFILE)to hard at startup. (35)server_headerconfigurable — refactor of all comptime concat sites to runtimeg_server_line; empty string omits. (36) Lazytracebackimport — defer the ~150 KiB stdlib until first error path. (37)workers=0auto-detectsmin(cpu_count(), 4). Tier-5 final: (38)PYTHONFAULTHANDLER=1auto in re-exec env. (39)SIGUSR1dump now includesdrainingflag. (40)setproctitleviaprctl(PR_SET_NAME)—saltare,saltare:master,saltare:wkrNvisible inps. (41)TCP_FASTOPENserver-side queue (Linux ≥ 3.7). (42) Periodicgc.collect(0)every N requests for gen-0 churn. (43)X-Forwarded-Host+Forwarded:(RFC 7239) — both feedscope["server"]and the rate-limit key whenproxy_headers=True. (44)/metricssaltare_health_stategauge — 0=healthy, 1=draining. (45) WebSocket continuation frames — RFC 6455 §5.4 reassembled per-connection up to 1 MiB cap (was a real bug — fragmented messages from any client got the connection torn down). (46) mTLS —ssl_ca_file+ssl_verify_client=Trueenforce client cert verification at handshake. Bench: 46.6 / 45.6 / 45.4 MiB vs uvicorn 48.93 / 49.92 / 54.21 MiB and granian 56.16–57.68 MiB. Tests 66/5 ✓.
Deferred to v1.4 (refactors that would inflate the RAM floor today): request body streaming (replaces 16 KiB body cap with chunked push), sendfile(2) zero-copy via X-Sendfile-Path, request-body decompression (Content-Encoding: gzip), response gzip/brotli, HTTP/2 + ALPN, WebSocket per-message-deflate.
v1.4 candidates (not yet started)
- Request body streaming. The read buffer caps body size at the upgraded 16 KiB pool block; bodies past that get 413. Streaming would require a new connection state ("body-in-flight, dispatch active") plus interleaved
http_dispatch_push_bodycalls from the Zig side. Major refactor of the dispatch loop. sendfile(2)zero-copy file path. ASGI extension where the app sends{"type": "saltare.sendfile", "path": "/var/www/file.bin"}and Zig callssendfile(socket, file_fd, NULL, size)directly — no Python-level body copying. Useful for static-asset endpoints; bridge changes are non-trivial because it has to bypass the normalhttp.response.bodychunk path.- HTTP/2 via ALPN +
nghttp2linkage. Multiplexing fewer connections would cut per-conn overhead even further, but the wire-format work is large. - Free-threaded Python (
cp314t) — measure RSS + rps with the GIL gone; saltare's single-threaded I/O loop with GIL-locked dispatch is the architecture, free-threaded could let dispatch run concurrently. Could go either way.
Install (once published)
pip install saltare
Usage
# main.py
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"hello": "world"}
saltare main:app --host 0.0.0.0 --port 8000
For HTTPS, pass a certificate and private key (PEM, both required together):
import saltare
from main import app
saltare.run(app, host="0.0.0.0", port=443,
ssl_certfile="/etc/letsencrypt/live/example.com/fullchain.pem",
ssl_keyfile="/etc/letsencrypt/live/example.com/privkey.pem")
Both per-request HTTP dispatch and ASGI lifespan startup/shutdown are wired up: FastAPI(lifespan=...) and the older @app.on_event("startup") work as expected.
Streaming responses
Apps can emit response bodies in chunks via the standard ASGI more_body flag — saltare flushes each chunk to the wire as soon as the app produces it instead of buffering the full response in Python:
async def streaming_endpoint(scope, receive, send):
await receive()
await send({"type": "http.response.start", "status": 200,
"headers": [(b"content-type", b"text/plain")]})
for chunk in produce_chunks(): # arbitrary length, no upfront size needed
await send({"type": "http.response.body", "body": chunk, "more_body": True})
await send({"type": "http.response.body", "body": b"", "more_body": False})
When the app does not declare a Content-Length, saltare adds Transfer-Encoding: chunked automatically. Apps that do declare a Content-Length get raw bytes streamed (no chunked framing). FastAPI's StreamingResponse and Starlette's SSE helpers both work without changes.
Idle timeouts
Every connection is bounded by four deadlines, all configurable in seconds:
saltare.run(
app,
header_timeout=5, # accept → headers parsed
keep_alive_timeout=5, # between requests on a kept-alive conn
body_timeout=30, # headers parsed → body fully received
write_timeout=30, # max time held in the writing state
)
The same flags are exposed on the CLI (--header-timeout, --keep-alive-timeout, --body-timeout, --write-timeout). Defaults match the values above. WebSocket connections are exempt — long-lived idle WS sockets are expected, and ping/pong-driven keepalive lands post-v0.11.
Resource caps
saltare.run(
app,
max_concurrent_connections=1024, # accepted sockets held open at once
max_keepalive_requests=1000, # requests per keep-alive conn before close
max_request_body=1024 * 1024, # bytes; oversize gets 413
)
CLI flags: --max-concurrent-connections, --max-keepalive-requests, --max-request-body. Defaults match the values above. Expect: 100-continue is honoured automatically (the interim response is written before the body is read, except when the declared Content-Length already exceeds max_request_body — in which case the client gets a 413 directly). In v0.13 the read buffer (16 KiB) is the practical hard ceiling for max_request_body; request-body streaming for larger bodies lands in a follow-up.
Connection lifecycle caps
saltare.run(
app,
max_connections_per_ip=50, # TCP-RST over-cap peers (defends DDoS)
max_connection_lifetime=3600, # force-close after N seconds
rate_limit_per_sec=100, # per-IP token bucket (0 = disabled)
rate_limit_burst=200,
)
max_connections_per_ip shares the per-IP table with the rate limiter (4096-entry LRU); over-cap peers get a TCP-level RST at accept time before any HTTP work happens. max_connection_lifetime (seconds) is a wall-clock cap — stricter than max_keepalive_requests for clients that keep a connection open for hours. Both default to 0 (disabled). When proxy_headers=True, the rate limiter uses X-Real-IP / X-Forwarded-For instead of the TCP peer; when proxy_protocol=True, it uses the source from the PROXY header.
TCP tuning
saltare.run(
app,
listen_backlog=1024, # listen(2) backlog (default 256)
tcp_keepidle=60, # seconds idle before first probe
tcp_keepintvl=10, # seconds between probes
tcp_keepcnt=4, # unanswered probes = drop
tcp_user_timeout_ms=30000, # max in-flight unacked write window
)
listen_backlog is capped by /proc/sys/net/core/somaxconn. The keepalive trio tightens dead-connection detection past the kernel default (~2 hours idle); typical mobile-friendly setting is 60 / 10 / 4. tcp_user_timeout_ms (Linux only) is more aggressive than keepalive — it caps stuck WRITE windows too, useful on flaky network paths.
File descriptor limit
saltare.run(app, auto_raise_nofile=True)
Raises the soft RLIMIT_NOFILE to the hard limit at startup so max_concurrent_connections isn't bottlenecked by the user's default 1024 fd cap. Linux only. Equivalent to ulimit -n $(ulimit -Hn) before invoking saltare.
Pre-warming the user app
saltare.run(app, startup_request=True)
After lifespan.startup finishes, saltare issues an internal GET / against the app to warm route compilation, pydantic validators, and JIT caches. The first real client request then doesn't pay the cold-start cliff (typically 50-200 ms drop to 1-5 ms). Skipped if your app's / route does work that's expensive or has side effects — design startup_request accordingly. Best-effort: any exception during warmup is swallowed.
TLS session cache
saltare.run(
app,
ssl_certfile="...", ssl_keyfile="...",
tls_session_cache_size=1024, # OpenSSL server-side cache (0 = disabled)
)
When set, OpenSSL caches up to N completed TLS sessions; repeat clients negotiating a session resumption skip the full handshake (~3 RTTs → 1 RTT). Cost: ~20 KiB resident per cached session at peak. 1024 ≈ 20 MiB ceiling, fine for production. 0 (default) keeps the floor low; flip on once your TLS workload warrants it.
Customising / hiding the Server: header
saltare.run(app, server_header="my-api/2.1") # white-label
saltare.run(app, server_header="") # omit the line entirely
The default is Server: saltare/1.3.0. Setting an explicit value overrides it (built once at start; per-response cost is one {s} substitution). Empty string omits the header. Useful behind a reverse proxy that already advertises a server line, or for hiding the saltare identity for security-by-obscurity.
HEAD requests
HEAD /path returns the same headers as GET /path but no response body, per RFC 7230 §3.3.3. saltare detects HEAD in the dispatcher and suppresses body bytes the app emits (the app itself doesn't have to special-case HEAD). Transfer-Encoding: chunked is forced off for HEAD (no body to chunk). Working as expected — no flag.
Auto worker count
saltare.run(app, workers=0) # min(cpu_count, 4)
workers=0 (and --workers 0) reads os.cpu_count() and caps at 4 — past 4 the GIL-locked dispatch sees diminishing returns under saltare's architecture. Set explicitly when you know better.
mTLS (client certificate verification)
saltare.run(
app,
ssl_certfile="/path/to/server.crt",
ssl_keyfile="/path/to/server.key",
ssl_ca_file="/path/to/ca.pem",
ssl_verify_client=True,
)
ssl_ca_file loads the CA bundle clients must present a cert from; ssl_verify_client=True flips OpenSSL into SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT — connections without a valid client cert are rejected at handshake. Useful for zero-trust deployments and service-to-service auth.
TCP Fast Open
saltare.run(app, tcp_fastopen_qlen=256)
Enables TCP_FASTOPEN (Linux ≥ 3.7) on the listen socket. Repeat clients can include payload in the SYN, saving 1 RTT. Wins are visible only when clients themselves opt into TFO and the kernel has net.ipv4.tcp_fastopen set to a value that includes server-side support (typically 3). 256 (matching the default listen_backlog) is a safe value.
Generational GC tuning
saltare.run(app, gc_collect_every_n_requests=1000)
Triggers a gc.collect(0) (gen-0 only — cheap, ~tens of µs) every N completed dispatches. Useful for apps that allocate many cyclic small objects per request (heavy pydantic / dataclass construction): keeps the gen-1 set small so the eventual full-gen sweep stays cheap. The idle-window full GC still runs on top.
Forwarded: header (RFC 7239) + X-Forwarded-Host
proxy_headers=True parses, in order of preference:
- RFC 7239
Forwarded: for=...;proto=...;host=...— modern standard, used by some proxies. - nginx
X-Real-IP— single client IP. - legacy
X-Forwarded-For— comma-separated chain (leftmost = client).
Plus Forwarded: ...;host= or X-Forwarded-Host populates scope["server"] so apps see the public hostname:port instead of the raw listen address. Only enable behind a trusted reverse proxy.
WebSocket fragmentation (continuation frames)
RFC 6455 §5.4 fragmented messages (FIN=0 first frame + 0..N continuation frames + FIN=1 final continuation) are reassembled per-connection up to a 1 MiB cap. Apps see one websocket.receive event with the full payload — no special handling required.
Operational diagnostics
kill -USR1 $(pidof saltare)→ JSON line on stderr withopen_conns,in_flight,requests_total,rss_kib,rl_table_size,draining.PYTHONFAULTHANDLER=1set automatically in CLI re-exec → CPython prints stack on segfault / SIGABRT.- Process visible in
ps/top/htopassaltare(single-worker),saltare:master, orsaltare:wkrN(multi-worker). /metricsendpoint exposessaltare_health_stategauge (0 = healthy, 1 = draining).
Observability and deployment knobs
saltare.run(
app,
metrics_path="/metrics", # Prometheus text from Zig counters
health_path="/healthz", # 204 No Content from Zig — k8s probe friendly
favicon_204=True, # GET /favicon.ico → 204 from Zig (skip Python)
cors_preflight_allow_all=True, # OPTIONS w/ Origin → permissive CORS, no Python
rate_limit_per_sec=100, # per-IP token-bucket rate cap (0 = disabled)
rate_limit_burst=200, # burst ceiling per IP (default 100)
max_connections_per_ip=50, # per-IP open-connection cap (0 = disabled)
tracemalloc_path="/debug/tracemalloc",
access_log=True,
access_log_path="/var/log/saltare/access.log", # file instead of stderr
proxy_headers=True,
request_id_header="X-Request-ID", # auto-gen + scope["x-request-id"] + response hdr
server_timing=True, # `Server-Timing: total;dur=<ms>` on every response
uds_path="/run/saltare.sock",
)
CLI flags: --metrics-path, --health-path, --favicon-204, --cors-preflight-allow-all, --rate-limit-per-sec, --rate-limit-burst, --max-connections-per-ip, --tracemalloc-path, --access-log, --access-log-path, --proxy-headers, --request-id-header, --server-timing, --uds PATH, --listen-backlog, --tcp-keepidle, --tcp-keepintvl, --tcp-keepcnt, --proxy-protocol. All off by default. The Zig-side intercepts (metrics, health, favicon, CORS preflight, tracemalloc) skip the Python dispatch entirely.
PROXY protocol v1 + v2 (L4 load balancers)
When saltare sits behind an L4 LB that won't add HTTP headers (AWS NLB / ALB, GCP TCP LB, HAProxy mode tcp), the TCP peer is the LB, not the real client — X-Forwarded-For doesn't exist at this layer. Pass proxy_protocol=True (--proxy-protocol) and saltare auto-detects either:
- v1 (text):
PROXY <TCP4|TCP6|UNKNOWN> <src> <dst> <sport> <dport>\r\n— what HAProxy 1.x emits. - v2 (binary): 12-byte signature
\r\n\r\n\0\r\nQUIT\n+ 4-byte header + variable address block — what AWS NLB/ALB and modern HAProxy emit by default.
Saltare reads the appropriate header at every accept, uses the source as the rate-limit / access-log key, then proceeds to TLS or HTTP. Connections that don't begin with a valid PROXY header are closed.
systemd socket activation
When invoked under systemd with a .socket unit, saltare auto-detects LISTEN_FDS=1 + LISTEN_PID=$$ and inherits fd 3 instead of binding the host:port. Drop-in for zero-downtime reload via systemctl reload:
# /etc/systemd/system/saltare.socket
[Socket]
ListenStream=0.0.0.0:8000
[Install]
WantedBy=sockets.target
# /etc/systemd/system/saltare.service
[Service]
ExecStart=/usr/bin/saltare main:app --workers 4
Environment="MALLOC_ARENA_MAX=1"
SIGUSR1 stats dump
kill -USR1 $(pidof saltare) makes saltare emit a single JSON line on stderr:
{"event":"saltare.stats","open_conns":47,"in_flight":3,"requests_total":18432,"rss_kib":48132,"rl_table_size":124}
Useful in production for snapshotting state without an HTTP probe.
Rate limiting
rate_limit_per_sec enables a per-IP token-bucket implemented in Zig: each peer IP gets rate_limit_burst tokens, refilled at rate_limit_per_sec per second up to the burst ceiling. Each request consumes one token; over-rate IPs get a 429 Too Many Requests from Zig before the Python app sees the request. The tracking table is bounded at 4096 IPs; once full, the oldest entry evicts. Disabled (default) costs nothing — a single if (rate_limit_per_sec > 0) per request. UDS connections are not rate-limited (no peer IP).
tracemalloc debug endpoint
tracemalloc_path auto-calls tracemalloc.start(25) at server init and serves a top-30 snapshot at the given path:
# top 30 allocations (group: lineno)
542.3 KiB 8 blocks /opt/.../pydantic/_internal/_model_construction.py:204
213.7 KiB 91 blocks /opt/.../starlette/routing.py:97
...
Tracking has CPU + RAM cost (5–10% RSS depending on app). Don't leave it on in production permanently — flip the flag, scrape once, flip off (requires a process restart).
IPv6
Pass an IPv6 address (with or without brackets) as host. saltare auto-detects v6 by the presence of a colon and creates an AF_INET6 socket with IPV6_V6ONLY=1 set:
saltare.run(app, host="::", port=8000) # all v6 interfaces
saltare.run(app, host="[::1]", port=8000) # v6 loopback
For dual-stack (v4 + v6) listeners run two saltare processes — IPV6_V6ONLY=1 is set explicitly because the kernel default varies by distro.
Metrics endpoint exposes:
saltare_open_connections gauge – active TCP/UDS sockets
saltare_in_flight_requests gauge – HTTP requests being dispatched right now
saltare_requests_total counter – HTTP requests dispatched since startup
saltare_responses_4xx_total counter
saltare_responses_5xx_total counter
saltare_bytes_sent_total counter
saltare_bytes_received_total counter
saltare_process_resident_memory_bytes gauge – RSS from /proc/self/status (Linux)
The metrics_path request is answered entirely from Zig — your ASGI app never sees it.
Access log format (one JSON line per completed request, to stderr):
{"method":"GET","path":"/users/42","status":200,"bytes":318,"latency_us":1234,"user_agent":"curl/8.0"}
Stack-buffered, JSON-escaped, single write(2) per line so concurrent workers don't interleave.
Proxy headers: X-Real-IP (single client IP, nginx convention; takes precedence) or X-Forwarded-For (comma-separated chain; leftmost address) → scope["client"], plus X-Forwarded-Proto (http/https → scope["scheme"]). Only enable behind a proxy that strips client-supplied X-Forwarded-* headers, otherwise clients can spoof their identity.
CLI reference
saltare APP [options]
ASGI app target as 'module:attr' (e.g. 'main:app').
Network
--host HOST bind address (default 127.0.0.1; use :: or [::1] for v6)
--port PORT bind port (default 8000)
--uds PATH bind a Unix domain socket instead
--listen-backlog N listen(2) backlog (default 256)
--workers N number of pre-fork workers (0 = auto-cpu-count, capped at 4)
TLS (lazy-loaded — system libssl needed only when these are passed)
--ssl-certfile PATH TLS certificate (PEM)
--ssl-keyfile PATH TLS private key (PEM)
--ssl-ca-file PATH CA bundle for client cert verification (mTLS)
--ssl-verify-client require + verify client cert (mTLS)
--tls-session-cache-size N OpenSSL session cache size (0 = disabled)
Timeouts (seconds)
--header-timeout SECS accept → headers parsed (default 5)
--keep-alive-timeout SECS idle keepalive (default 5)
--body-timeout SECS headers → body fully received (default 30)
--write-timeout SECS maximum time in writing state (default 30)
--shutdown-timeout SECS graceful drain ceiling on SIGTERM (default 30)
--ws-keepalive-timeout SECS WebSocket ping interval (default 20)
TCP tuning
--tcp-keepidle SECS seconds idle before kernel keepalive probe
--tcp-keepintvl SECS seconds between keepalive probes
--tcp-keepcnt N unanswered probes before drop
--tcp-user-timeout-ms MS TCP_USER_TIMEOUT (Linux)
--tcp-fastopen-qlen N TCP_FASTOPEN queue length (Linux ≥ 3.7)
Resource caps
--max-concurrent-connections N accepted sockets held open (default 1024)
--max-keepalive-requests N requests per connection before close (default 1000)
--max-request-body BYTES oversize body → 413 (default 1 MiB)
--max-connections-per-ip N per-IP open connection cap (0 = disabled)
--max-connection-lifetime SECS wall-clock connection age cap (0 = disabled)
--rate-limit-per-sec N per-IP token-bucket rate (0 = disabled)
--rate-limit-burst N burst ceiling (default 100)
--auto-raise-nofile raise soft RLIMIT_NOFILE to hard at startup
Observability + Zig-side intercepts (no Python dispatch when matched)
--metrics-path PATH Prometheus text from Zig counters
--health-path PATH k8s-style probe → 200 'ok' from Zig
--tracemalloc-path PATH top-30 Python alloc dump (Linux/CPython)
--favicon-204 GET /favicon.ico → 204 from Zig
--cors-preflight-allow-all OPTIONS+Origin → permissive CORS from Zig
Request / response shaping
--access-log one JSON line per request to stderr
--access-log-path FILE route the JSON log to a file instead
--proxy-headers parse X-Forwarded-* / X-Real-IP into scope + rate-limit
--proxy-protocol HAProxy PROXY-protocol v1 + v2 at every accept
--request-id-header NAME auto-generate request ID + scope key + response header
--server-timing emit `Server-Timing: total;dur=<ms>` per response
--server-header VALUE override `Server:` (empty string omits the header)
Operational
--startup-request issue an internal GET / after lifespan startup (warm app)
--gc-collect-every-n-requests N periodic gc.collect(0) cadence (0 = disabled)
--version print saltare version
Same flags are available on the saltare.run() Python API — the kwarg names match the CLI flags with hyphens replaced by underscores.
Production deployment
Workers and CPU
workers=1 (the default) is one process serving all traffic. For multi-core machines, set workers to roughly min(cpu_count, 4) as a starting point. Pre-fork CoW + gc.freeze() mean each additional worker costs only ~5 MiB of physical RAM on top of the single-worker baseline — measured at 4 workers = 51 MiB Pss, vs ~150 MiB if every worker were independent (see Benchmarks).
saltare main:app --host 0.0.0.0 --port 8000 --workers 4
The master process binds + listens once and forks the workers; the kernel load-balances accept() across them. A worker exiting unexpectedly causes the master to propagate shutdown to the rest and exit — your pod supervisor then restarts the whole thing. v1.0 deliberately doesn't respawn within the master; that's the supervisor's job.
Environment
# Bound glibc's per-thread malloc arenas. saltare runs single-threaded per
# worker; default arenas (~8 × n_cpus on 64-bit) inflate RSS gratuitously.
# Typical saving: 5–15 MiB per worker.
export MALLOC_ARENA_MAX=2
# Optional, additive to MALLOC_ARENA_MAX. jemalloc has one global heap with
# thread-local caches and fragments far less than glibc on long-lived
# servers. Typical extra saving on top of MALLOC_ARENA_MAX=2: 5–15 MiB.
# Provided pre-baked in `Dockerfile.production` (`make production-image`).
export LD_PRELOAD=/usr/lib64/libjemalloc.so.2
# Conservative fd limit if you're not behind a reverse proxy that already
# rate-limits accept().
ulimit -n 65535
A ready-made production image with both knobs applied lives in
Dockerfile.production; build it with
make production-image, then layer your ASGI app on top.
Eager imports under multi-worker
gc.freeze() runs in the master right before the fork loop so
already-imported modules don't dirty CoW pages on each worker's first GC
sweep. For this to work, every module the app needs must be imported in
the master before the fork. FastAPI's deferred-import patterns are the
common gotcha: a route handler that does import heavy_dep lazily at
first request will dirty 500+ KiB of pages in every worker
independently, killing the CoW saving.
Pattern: do all imports at module top-level, and exercise the heavy paths
once during lifespan.startup so any deferred initialisation
(connection pools, JIT caches) is materialised in the master:
from fastapi import FastAPI
import heavy_dep
import asyncpg
@asynccontextmanager
async def lifespan(app: FastAPI):
# Force imports + warm caches in the master, before the fork.
pool = await asyncpg.create_pool(...)
app.state.pool = pool
# Touch any lazy initialisers so the cost lands in master's RSS,
# not each worker's.
heavy_dep.warm_up()
yield
await pool.close()
app = FastAPI(lifespan=lifespan)
After lifespan.startup, saltare calls malloc_trim(0) to return
fragmented heap to the OS, then gc.freeze()s the surviving objects
before forking — workers only allocate dirty pages for their own
per-request state.
systemd
[Service]
Environment="MALLOC_ARENA_MAX=2"
LimitNOFILE=65535
ExecStart=/usr/bin/saltare main:app \
--host 0.0.0.0 --port 8000 \
--workers 4 \
--metrics-path /metrics --access-log
KillSignal=SIGTERM
TimeoutStopSec=35
Restart=on-failure
TimeoutStopSec should be a couple of seconds higher than --shutdown-timeout (default 30 s) so systemd doesn't escalate to SIGKILL while saltare is still draining.
Kubernetes
apiVersion: apps/v1
kind: Deployment
spec:
template:
spec:
terminationGracePeriodSeconds: 35
containers:
- name: api
image: your-image
env:
- name: MALLOC_ARENA_MAX
value: "2"
args:
- "--workers=4"
- "--metrics-path=/metrics"
- "--access-log"
- "--proxy-headers"
ports:
- containerPort: 8000
readinessProbe:
httpGet:
path: /healthz # your app's endpoint
port: 8000
# Prometheus pulls /metrics from each pod individually. With
# --workers > 1 each scrape may land on a different worker, so
# configure Prometheus to sum across pods and treat per-pod
# counters as samples.
saltare honours SIGTERM with a graceful drain (--shutdown-timeout, default 30 s): in-flight requests get to finish, lifespan.shutdown runs, then the process exits 0.
Behind nginx (Unix domain socket)
saltare main:app --uds /run/saltare.sock --workers 4
upstream saltare {
server unix:/run/saltare.sock;
}
server {
location / {
proxy_pass http://saltare;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Pair with --proxy-headers so saltare reads X-Forwarded-For / X-Forwarded-Proto into scope["client"] / scope["scheme"] instead of seeing nginx as the client.
What saltare does for you automatically
malloc_trim(0)afterlifespan.startupreturns 1–3 MiB of glibc heap fragmentation (FastAPI/Pydantic imports) to the OS.- Idle pool buffers older than 30 s get
MADV_DONTNEEDso RSS recovers after traffic peaks. - App exceptions during dispatch are caught: pre-
response.startraises become a 500; mid-stream raises close the connection. Workers keep serving. - WebSocket connections get server-side ping/pong every 20 s (configurable); silent dead WS sockets are reaped at 2× that window.
Building from source
Local development with Zig
Easiest dev loop. saltare's build pipeline (scikit-build-core → CMake → Zig) needs three things on your machine:
- Zig 0.16+
- Python development headers (
Python.h) - OpenSSL development headers (
<openssl/ssl.h>, used by src/zig/tls.zig)
Linux (x86_64 or aarch64)
# Debian/Ubuntu
sudo apt install python3-dev libssl-dev cmake build-essential
# Fedora/RHEL/Rocky
sudo dnf install python3-devel openssl-devel cmake gcc
# Zig: pinned 0.16.0 tarball, both archs handled
bash scripts/install-zig.sh
macOS
brew install zig openssl@3
# Python headers come with Homebrew Python or python.org installers.
Then:
uv sync # or: pip install -e ".[dev]"
pip install -e . # builds the extension in place
pytest -q
If pip install -e . errors with zig was not found on PATH, your Zig install didn't end up in PATH — bash scripts/install-zig.sh symlinks /usr/local/bin/zig for you. If it errors with openssl/ssl.h: No such file or directory, the OpenSSL dev headers are missing (see the OS commands above). Both errors apply equally on x86_64 and aarch64; the Docker pipeline (make build) sidesteps them entirely by running everything inside the manylinux container.
Docker (no Zig on host)
If you don't want Zig on the host (CI-style builds):
./scripts/build-wheel.sh
# -> dist/saltare-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
This invokes Dockerfile, which:
- Pulls
quay.io/pypa/manylinux_2_28_x86_64. - Downloads pinned Zig (
scripts/install-zig.sh). - Builds the wheel and runs
auditwheel repair. - Exports
dist/*.whlto the host.
Override target via env: PYTHON_TAG=cp310-cp310 MANYLINUX_TAG=manylinux_2_28_aarch64 ./scripts/build-wheel.sh.
Releasing
Tag a version and push:
git tag v0.1.0 && git push origin v0.1.0
.github/workflows/release.yml runs cibuildwheel on Linux (x86_64 + aarch64) and macOS (x86_64 + arm64), builds the sdist, and publishes to PyPI via Trusted Publishing.
Project layout
.
├── build.zig # Zig build script (produces _core extension)
├── build.zig.zon # Zig package manifest
├── CMakeLists.txt # scikit-build-core invokes Zig from here
├── pyproject.toml # build backend + cibuildwheel config
├── Dockerfile # local manylinux+Zig build (builder/tester/bench/export)
├── Dockerfile.production # slim runtime image w/ jemalloc + MALLOC_ARENA_MAX=2
├── Makefile # build / test / bench / valgrind / production-image
├── scripts/
│ ├── install-zig.sh # pin & install Zig (used by Docker + CI)
│ └── build-wheel.sh # one-liner local Docker build
├── src/
│ ├── zig/
│ │ ├── module.zig # Python C-API surface (PyInit__core)
│ │ ├── server.zig # epoll accept loop + per-connection state machine
│ │ ├── eventloop.zig # epoll wrapper (Linux; kqueue TBD)
│ │ ├── http.zig # zero-alloc HTTP/1.1 parser + chunked decoder
│ │ ├── pool.zig # 4 KiB / 16 KiB read-buffer free-lists + MADV_DONTNEED
│ │ ├── timer.zig # hashed timer wheel for idle timeouts
│ │ ├── tls.zig # OpenSSL wrapper (handshake, read/write, pending)
│ │ ├── ws.zig # WebSocket framing (RFC 6455)
│ │ ├── master.zig # pre-fork multi-worker supervisor
│ │ └── bridge.zig # GIL-aware Python <-> Zig request dispatch
│ └── saltare/
│ ├── __init__.py # public Python API: run(), __version__
│ ├── cli.py # `saltare app:app --host ... --port ...`
│ ├── _dispatcher.py # asyncio loop + ASGI scope build / lifespan / WS
│ ├── __main__.py
│ └── _core.pyi # type stubs for the native module
├── benchmarks/ # `make bench` harness — saltare vs uvicorn vs granian
│ ├── app.py # shared FastAPI app (small + /large endpoint)
│ ├── bench.py # workload runners + Markdown table renderer
│ ├── run_saltare.py # single-worker / multi-worker saltare launcher
│ ├── run_uvicorn.py # plain uvicorn launcher (no [standard] extras)
│ └── run_granian.py # Rust+Python ASGI peer for triangulation
├── tests/ # pytest suite (HTTP, keepalive, chunked, lifespan,
│ │ # TLS, WebSocket, timeouts, multi-worker, shutdown,
│ │ # observability)
│ └── valgrind.supp # CPython-side leak suppressions for `make valgrind`
└── .github/workflows/
└── release.yml # cibuildwheel + PyPI publish on tag
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file saltare-1.3.0.tar.gz.
File metadata
- Download URL: saltare-1.3.0.tar.gz
- Upload date:
- Size: 179.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36d216a027bfe00cdc6da72eb9f5a87c7c61fe6b77c50fa2d6bae35555c09af8
|
|
| MD5 |
b6fd9b601741091ad2bf501b60a58766
|
|
| BLAKE2b-256 |
ea7275c4fefb554f86d0c6ca0e1118eb99c73389a56d0a2ffa21554f71674e0c
|
Provenance
The following attestation bundles were made for saltare-1.3.0.tar.gz:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0.tar.gz -
Subject digest:
36d216a027bfe00cdc6da72eb9f5a87c7c61fe6b77c50fa2d6bae35555c09af8 - Sigstore transparency entry: 1460152956
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 151.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fbbe2486a8d1a5d2e8371aaa0304508eb0286f1ac4adf6777ffb2c838419b2b
|
|
| MD5 |
06fccc80be0dfaf9da34745e2d31a4e5
|
|
| BLAKE2b-256 |
fae93d945c2bbf88917d0e417b76b89cb3a754ed6b0bafd3da8bae3c780e37f0
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
9fbbe2486a8d1a5d2e8371aaa0304508eb0286f1ac4adf6777ffb2c838419b2b - Sigstore transparency entry: 1460154345
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.3.0-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 154.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9343e6342b82f41fb66fc0376906e414ace483ea0264623854df09cf41261032
|
|
| MD5 |
845382a03eef3cd1dc8197d50e5f66c8
|
|
| BLAKE2b-256 |
f3f178bf0634f886a45e2363bc434827d42f7bceaf6cd45663618fb64b6142a4
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp314-cp314-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp314-cp314-manylinux_2_28_aarch64.whl -
Subject digest:
9343e6342b82f41fb66fc0376906e414ace483ea0264623854df09cf41261032 - Sigstore transparency entry: 1460154744
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 151.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54547417bc5ea87886c140fe19e9041bcc2349507e8e86be1dc3bcea08da5c15
|
|
| MD5 |
71bdcc719ad81936d9c4299fcd3ba42f
|
|
| BLAKE2b-256 |
a8be96474bbb2ca0949f8330c66d42431def1078854bb2298beb0d93f80e64ff
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
54547417bc5ea87886c140fe19e9041bcc2349507e8e86be1dc3bcea08da5c15 - Sigstore transparency entry: 1460153289
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 154.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bae5b3d03707cbecddc85833d40f94217d78fd519cdeb3efc0c244dea795a1a7
|
|
| MD5 |
73e37f7ff420fa2451f6c806e77225db
|
|
| BLAKE2b-256 |
f23db4ce5eaa3e12ab428332e7558128cacc844eade540d390d5683090e4d7a0
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
bae5b3d03707cbecddc85833d40f94217d78fd519cdeb3efc0c244dea795a1a7 - Sigstore transparency entry: 1460153468
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 151.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e338f9222941eb04b55d95440464cc72cd5b899b0e8a9d594d247e9a312ec4f2
|
|
| MD5 |
336c7101652cd7c649eb924d6c6b8897
|
|
| BLAKE2b-256 |
ea0a51d2d4f97f6cb0a7c72c359c0d1d05023e780d840653951121ba06d9221b
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
e338f9222941eb04b55d95440464cc72cd5b899b0e8a9d594d247e9a312ec4f2 - Sigstore transparency entry: 1460154553
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 154.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be011c13c736ab2218f52b2b9af2a3cc0608254424b9239f1291b28fd0a9441c
|
|
| MD5 |
28af4bb08cebe1f14108bc6d1d4389bf
|
|
| BLAKE2b-256 |
663180a053db3746a9a7a53b5bb22096f4de28b0482d65e42a531f9b19c978c2
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
be011c13c736ab2218f52b2b9af2a3cc0608254424b9239f1291b28fd0a9441c - Sigstore transparency entry: 1460153685
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 151.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f865a4650102bd7ab6f8848ce05fbc921a3c941507291f798b4956a929b3e62b
|
|
| MD5 |
40ae4aeb392036a20fe0adddfe6f1d51
|
|
| BLAKE2b-256 |
1548bc8326ed7d0a14d5f87c24715a0e2b9c945461179c47c6997230c228672a
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
f865a4650102bd7ab6f8848ce05fbc921a3c941507291f798b4956a929b3e62b - Sigstore transparency entry: 1460154158
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 154.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6dd511bb62373fd58a6baa38c7fde668721089a608b740464f0904276602aaa
|
|
| MD5 |
871952e9914f6b65d52ea6f46d1d8358
|
|
| BLAKE2b-256 |
e6683de7281e33c7752f2d221f136830bbd0740182b2dffc30c239aa3cafa7b1
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
b6dd511bb62373fd58a6baa38c7fde668721089a608b740464f0904276602aaa - Sigstore transparency entry: 1460153933
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 151.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b62257ebaff982e9ae24a1d639be19575a11847f4f31781b62768bbc54d023d
|
|
| MD5 |
7f8708dcf3493826e0783082135284f0
|
|
| BLAKE2b-256 |
ecddb70a7f724fe4d153c8fb6e88960a80ec705d91179de42bf5a6e237b44f3c
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
0b62257ebaff982e9ae24a1d639be19575a11847f4f31781b62768bbc54d023d - Sigstore transparency entry: 1460153130
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.3.0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 154.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f1d6f976ac7f104fa72410943b51296a17b721423d44a7135f642cb81824bf3
|
|
| MD5 |
c19a7f8c3dffaf0af9f66cb8b0b5d6e9
|
|
| BLAKE2b-256 |
86bdf2ea719097f68a9483ae8cef06d813c10baa7f599a4dca4455a65b988748
|
Provenance
The following attestation bundles were made for saltare-1.3.0-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.3.0-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
3f1d6f976ac7f104fa72410943b51296a17b721423d44a7135f642cb81824bf3 - Sigstore transparency entry: 1460154942
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@acae661d44143c8f829a81ed2b289dc304e79224 -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@acae661d44143c8f829a81ed2b289dc304e79224 -
Trigger Event:
push
-
Statement type: