Fork of https://github.com/reddec/nano-run mostly because that one has no build script :-D
Go to file
Alexander Baryshnikov 4edfaa4d26 initial code added 2020-09-10 18:11:34 +08:00
_docs initial code added 2020-09-10 18:11:34 +08:00
bundle initial code added 2020-09-10 18:11:34 +08:00
cmd/nano-run initial code added 2020-09-10 18:11:34 +08:00
internal initial code added 2020-09-10 18:11:34 +08:00
server initial code added 2020-09-10 18:11:34 +08:00
services initial code added 2020-09-10 18:11:34 +08:00
worker initial code added 2020-09-10 18:11:34 +08:00
.dockerignore initial code added 2020-09-10 18:11:34 +08:00
.gitignore initial code added 2020-09-10 18:11:34 +08:00
.golangci.yml initial code added 2020-09-10 18:11:34 +08:00
.goreleaser.yml initial code added 2020-09-10 18:11:34 +08:00
Dockerfile initial code added 2020-09-10 18:11:34 +08:00
Dockerfile.build initial code added 2020-09-10 18:11:34 +08:00
LICENSE Initial commit 2020-09-10 18:07:43 +08:00
README.md initial code added 2020-09-10 18:11:34 +08:00
go.mod initial code added 2020-09-10 18:11:34 +08:00
go.sum initial code added 2020-09-10 18:11:34 +08:00

README.md

Nano-Run

Lightweight async request runner.

A simplified version of trusted-cgi designed for async processing extreme amount of requests.

Goals

  • Minimal requirements for host;
  • Should have semi-constant resource consumption regardless of:
    • number of requests,
    • size of requests,
    • kind of requests;
  • Should be ready to run without configuration;
  • Should be ready for deploying in clouds;
  • Should support extending for another providers;
  • Can be used as library and as a complete solution;
  • Performance (throughput/latency) has less priority than resource usage.