1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/pbdZMQ-package.r
\docType{package}
\name{pbdZMQ-package}
\alias{pbdZMQ-package}
\alias{pbdZMQ}
\title{Programming with Big Data -- Interface to ZeroMQ}
\description{
ZeroMQ is a well-known library for high-performance
asynchronous messaging in scalable, distributed applications. This
package provides high level R wrapper functions to easily utilize
ZeroMQ. We mainly focus on interactive client/server programming
frameworks. For convenience, a minimal ZeroMQ library (4.1.0 rc1)
is shipped with pbdZMQ, which can be used if no system installation
of ZeroMQ is available. A few wrapper functions compatible with
rzmq are also provided.
}
\details{
The install command using default \pkg{pbdZMQ}'s internal ZeroMQ library is
\cr \cr
\code{> R CMD INSTALL pbdZMQ_0.1-0.tar.gz} \cr
\code{--configure-args="--enable-internal-zmq"}
\cr \cr
Other available variables include
\tabular{ll}{
Variable \tab Default \cr
\code{ZMQ_INCLUDE} \tab \code{-I./zmqsrc/include} \cr
\code{ZMQ_LDFLAGS} \tab \code{-L./ -lzmq} \cr
\code{ZMQ_POLLER} \tab \code{select} \cr
}
See the package source file \code{pbdZMQ/configure.ac} for details.
For installation using an external ZeroMQ library, see the package source
file \code{pbdZMQ/INSTALL} for details.
}
\references{
ZeroMQ/4.1.0 API Reference:
\url{https://libzmq.readthedocs.io/en/zeromq4-1/}
Programming with Big Data in R Website: \url{https://pbdr.org/}
}
\seealso{
\code{\link{zmq.ctx.new}()}, \code{\link{zmq.socket}()}.
}
\author{
Wei-Chen Chen \email{wccsnow@gmail.com}.
}
\keyword{package}
|