Small, fake RESTful server that can scale and handle large load. Primarily for load testing.
Install GO
wget https://raw.githubusercontent.com/hobbitcakes/tinydictionary/master/install_go.sh
bash install_go.sh
This project uses the Gin framework
go get github.com/gin-gonic/gin
go build tinydictionary.go
./tinydictionary&
curl -XGET http://[server:port]/version
Create a 1 gb file
dd if=/dev/zero of=/tmp/file.txt count=1024000 bs=1024
POST the file to the running server
curl -X POST -F "file=@/tmp/file.txt" -H "Content-Type: multipart/form-data" http://[server:port]/dinosaurs