# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 14
# self = https://watcher.sour.is/conv/rjnysia
Does anyone know what the differences between HTTP/1.1 HTTP/2 and HTTP/3 are? 🤔
Does anyone know what the differences between HTTP/1.1 HTTP/2 and HTTP/3 are? 🤔
@prologic Off the top of my head, I don't know the differences between 1.1 and 2 but I know HTTP/3 is the one that uses QUIC.
HTTP/2 differs from 1.x by becoming a binary protocol, it also multiplexes multiple channels over the same connection and has the ability to prefetch related content to the browser to lower the perceived latency.

HTTP/3 moves the binary protocol from HTTP/2 over to QUIC which is based on UDP instead of TCP. This makes it better suited to mobile or unstable networks where handling of transmission errors can be handled at a higher level.
@xuu That's my basic understanding too after doing the research.

Do you think yhere'd be any noticeable tangible benefits observed for self hosting? 🤔
@xuu That's my basic understanding too after doing the research.

Do you think yhere'd be any noticeable tangible benefits observed for self hosting? 🤔
from my understanding.. i don't know how the multiplexing works when its being proxied through another server. I know go has support for it if you call it out directly. https://pkg.go.dev/golang.org/x/net/http2
for http3 there is
@xuu Yeah I can see QUIC being a bit "snappier" especially on mobile networks.
@xuu Yeah I can see QUIC being a bit "snappier" especially on mobile networks.
http3 https://github.com/quic-go/quic-go/http3
@xuu That's a 404 🤣 -- Also wouldn't my ingress into my cluster (Traefik) have to support HTTP/3 (QUIC) too? 🤔 How does this even work in practice hmmm🤔
@xuu That's a 404 🤣 -- Also wouldn't my ingress into my cluster (Traefik) have to support HTTP/3 (QUIC) too? 🤔 How does this even work in practice hmmm🤔
oh dang. i think thats the go path not the github path.. missing the branch name. here is the pkg one: https://pkg.go.dev/github.com/quic-go/quic-go/http3