The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
RestRserve is an R web API framework for building high-performance AND robust microservices and app backends. On UNIX-like systems and Rserve backend RestRserve handles requests in parallel: each request in a separate fork - credits go to Simon Urbanek.
Creating application is as simple as:
library(RestRserve)
app = Application$new()
app$add_get(
path = "/health",
FUN = function(.req, .res) {
.res$set_body("OK")
})
app$add_post(
path = "/addone",
FUN = function(.req, .res) {
result = list(x = .req$body$x + 1L)
.res$set_content_type("application/json")
.res$set_body(result)
})
backend = BackendRserve$new()
backend$start(app, http_port = 8080)
Test it with curl
:
curl localhost:8080/health
# OK
curl -H "Content-Type: application/json" -d '{"x":10}' localhost:8080/addone
# {"x":11}
Using convenient .req
, .res
names for handler arguments allows to leverage autocomplete.
/get/{item_id}
)Debian and Alpine based images are available on docker-hub -https://hub.docker.com/r/rexyai/restrserve/
You can also install specific version (and we encourage to do so):
Guidelines for filing issues / pull requests - CONTRIBUTING.md.
evaluate::try_capture_stack
function which we use for this purpose.These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.