Simon Urbanek
Simon Urbanek
Once the connection is established, you have full control over what the session will do, so you can terminate the session whenever you feel like it which will close the...
There are really two issues here - one is that complex type should be supported and the other is that error handling is explicitly suppressed in favor of returning `null`....
Howe did you start `Rserve`? You cannot start `Rserve` directly on Windows, because it doesn't use absolute paths to libraries. Instead, Windows relies on the `PATH` environment variable and from...
You won't be able to handle S4 objects in matlab, you have to use S4 methods in R to extract what you need from those obejcts or convert them to...
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...
This seems more like a bug in R :) The packaging is done by `mkdist` which creates that symlink. I'm not sure why that symlink specifically should confuse R, though....
Related upstream: https://github.com/s-u/REngine/issues/6
This is not entirely straight-forward, because R doesn't always allow interrupt, so we can only address cases where the code causing the infinite loop is interruptible. In all other cases...
Can you provide more details? That include `sessionInfo()`, versions of R, Rserve and OS, exact commands and full output including any error(s). Also note that the is no daemon on...
- make sure the path to `Rserve.exe` actually exists - check the output path printed with your actual file location. - the main problem with Windows is that you cannot...