English 中文(简体)
如何在保留地实施回馈机制?
原标题:How to implement callback mechanism in Rserve?

http://www.rforge.net/Rserve/index.html' docs:

Reserve 没有回调功能。 您的应用程序可以通过 TCP/ IP 和 R 套接字执行回调, 但它不是 Reserv 的一部分 。

这意味着我的 java 客户端可以通过连接引用在远程会话上调用函数, 但远程会话无法回拨已即时调回的 java 客户端 。 我如何开发这样的机制 。 如果它通过 R 套接字或 tcp/ ip 服务器, 那么每一个连接都会打开套接字服务器吗?

问题回答

好吧,所以这就是我认为 执行反应R是可能的。

Non-blocking calls from java

您需要将 RServe java 客户端和分解方法 < code> request 分成两部分, 共行 [1] 。 第一部分向套接字写请求, 第二部分等待响应。 我们需要通过一些 < code > boolean 的旗帜来选择等待 。

Returning result from R

You will need some kind of active communication to Java. One possibility is to use plain sockets or something on higher level as HTTP. I thought about httpRequest package [2]. So the call from java should look like:

connection.eval(s"""simplePostToHost(
"192.168.12.12","/listener/results/",
try(eval(parse(text="$code")),silent=TRUE),port=8080""")

Listening for result in Java

The request and response should share some kind of unique ID so we know which response is for which request. You should run some service that listen on path /listener/results for incoming results and tells Java that result is ready. It should also enable to reuse RConnection that previously should be marked as "busy". I recommend to use it this part scala Promise[T] .

希望它能帮助某人 一旦我公司需要 我可能会执行它

[1] [1]https://github.com/s-u/REngine/blob/a74e184c051c2c2d2le850430cd2d2do052656d3a6c48//Rserve/protocol/RTalk.java#L211

[2]https://cran.r-project.org/web/packages/httprequest/httprequest.pdf





相关问题
How to plot fitted model over observed time series

This is a really really simple question to which I seem to be entirely unable to get a solution. I would like to do a scatter plot of an observed time series in R, and over this I want to plot the ...

REvolution for R

since the latest Ubuntu release (karmic koala), I noticed that the internal R package advertises on start-up the REvolution package. It seems to be a library collection for high-performance matrix ...

R - capturing elements of R output into text files

I am trying to run an analysis by invoking R through the command line as follows: R --no-save < SampleProgram.R > SampleProgram.opt For example, consider the simple R program below: mydata =...

R statistical package: wrapping GOFrame objects

I m trying to generate GOFrame objects to generate a gene ontology mapping in R for unsupported organisms (see http://www.bioconductor.org/packages/release/bioc/vignettes/GOstats/inst/doc/...

Changing the order of dodged bars in ggplot2 barplot

I have a dataframe df.all and I m plotting it in a bar plot with ggplot2 using the code below. I d like to make it so that the order of the dodged bars is flipped. That is, so that the bars labeled "...

Strange error when using sparse matrices and glmnet

I m getting a weird error when training a glmnet regression. invalid class "dgCMatrix" object: length(Dimnames[[2]]) must match Dim[2] It only happens occasionally, and perhaps only under larger ...

Generating non-duplicate combination pairs in R

Sorry for the non-descriptive title but I don t know whether there s a word for what I m trying to achieve. Let s assume that I have a list of names of different classes like c( 1 , 2 , 3 , 4 ) ...

Per panel smoothing in ggplot2

I m plotting a group of curves, using facet in ggplot2. I d like to have a smoother applied to plots where there are enough points to smooth, but not on plots with very few points. In particular I d ...