Starts Rserve in daemon mode (unix only). Any additional parameters
not related to Rserve will be passed straight to the underlying R. For
configuration, usage and command line parameters please consult the
online documentation at http://www.rforge.net/Rserve.
Use R CMD Rserve --help for a brief help.
The Rserve function is provided for convenience only.
On Windows the Rserve() function sets up the PATH to
include the current R.DLL so that Rserve can be run.
# R CMD Rserve []Rserve(debug = FALSE, port, args = NULL, quote=(length(args) > 1), wait, ...)
determines whether regular Rserve or debug version of
Rserve (Rserve.dbg) should be started.
port used by Rserve to listen for connections. If not specified, it will be taken from the configuration file (if present) or default to 6311
further arguments passed to Rserve (as a string that will be
passed to the system command - see quote below).
logical, if TRUE then arguments are quoted,
otherwise they are just joined with spaces
wait argument for the system call. It defaults
to FALSE on Windows and TRUE elsewhere.
other arguments to be passes to system.
Rserve is not just a package, but an application. It is provided as a R package for convenience only. For details see http://www.rforge.net/Rserve