readme.md raw

<a title="Go Report Card" target="_blank" href="https://goreportcard.com/report/github.com/ImVexed/fasturl"><img src="https://goreportcard.com/badge/github.com/ImVexed/fasturl?style=flat-square"></a> <a title="Doc for fasturl" target="_blank" href="https://pkg.go.dev/github.com/ImVexed/fasturl?tab=doc"><img src="https://img.shields.io/badge/go.dev-doc-007d9c?style=flat-square&logo=read-the-docs"></a> <a title="fasturl on Sourcegraph" target="_blank" href="https://sourcegraph.com/github.com/ImVexed/fasturl?badge"><img src="https://sourcegraph.com/github.com/ImVexed/fasturl/-/badge.svg?style=flat-square"></a>

Fast URL

FastURL is a Go URL parser using a Ragel state-machine instead of regex, or the built in standard library url.Parse.

Why?

S P E E D

Examples

See our tests

Benchmarks

ns/op

B/op

Raw:

goos: linux
goarch: amd64
pkg: github.com/ImVexed/fasturl
BenchmarkRegex-32         464509              2557 ns/op             530 B/op          3 allocs/op
BenchmarkRagel-32        5350304               225 ns/op              96 B/op          1 allocs/op
BenchmarkStd-32          2225313               537 ns/op             128 B/op          1 allocs/op
PASS
ok      github.com/ImVexed/fasturl      4.405s

How does this work?

Lots of goto's and determinism, feel free to zoom

Credits

maximecaron - Creating the initial ragael parser