Update readme

This commit is contained in:
Sky Johnson 2024-09-05 14:14:14 -05:00
parent 7cc10ab6b9
commit 4951463d77

View File

@ -1,12 +1,7 @@
# Router
A radix-tree based no-allocation router in Go. All credit to Eduard Urbach for his incredible work.
## Features
- Efficient lookup
- Generic data structure
- Zero dependencies
A radix-tree based no-allocation router in Go. All credit to Eduard Urbach for his incredible work. This router sports
a fancy PATRICIA tree structure for efficient string lookups. It also has ***zero dependencies***!
## Installation
@ -57,6 +52,10 @@ BenchmarkGithub/Len7-Params3-32 10181496 111.3 ns/op 96 B/o
BenchmarkGithub/Len7-Params3-NoAlloc-32 46369563 25.54 ns/op 0 B/op 0 allocs/op
```
## License
Licensed under MIT. [Take a look!](LICENSE)
## Credit
All of the code here is built by [Eduard Urbach](https://git.akyoto.dev/go/router).
All of the code here is built by [Eduard Urbach](https://git.akyoto.dev/go/router).