https://github.com/localvoid/ragel-router-example
Example of using Ragel to compile custom router in Go
https://github.com/localvoid/ragel-router-example
Last synced: about 1 year ago
JSON representation
Example of using Ragel to compile custom router in Go
- Host: GitHub
- URL: https://github.com/localvoid/ragel-router-example
- Owner: localvoid
- Created: 2016-04-14T10:17:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-14T10:19:08.000Z (almost 10 years ago)
- Last Synced: 2025-01-25T06:25:21.053Z (about 1 year ago)
- Language: Go
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example of using Ragel to compile custom router in Go
[Ragel](http://www.colm.net/open-source/ragel/) is a state machine compiler
that can be used to generate extremely fast http router.
## Compiling
```sh
$ go generate
$ go build
```