HTTP/2 support
Hello,
Does this library support HTTP/2, or are there plans to support it? I looked through the docs but did not notice any relevant information.
Thanks in advance!
Current versions of Rserve only support HTTP/1.0 and 1.1. It would be possible to add HTTP/2 support via nghttp2, but it is mostly pointless in the R use case so if you need to mix R processing with something else the usual deployment is to use nginx as reverse-proxy which only passes R-related requests or WebSockets to Rserve (see https://github.com/att/rcloud/wiki/Deployment#use-nginx-reverse-proxy for example).
That said, I am currently working on a new package that is based on Rserve but focuses on the HTTP part with performance as the goal, so I'll add more details when I release it.
@s-u Thanks for the quick response, I look forward to the new package!