Sent: 03 November 2009 11:59
To: Sklyar, Oleg (London)
Cc: r-devel@r-project.org
Subject: Re: [Rd] likely bug in 'serialize' or please explain
the memory usage
I haven't had a chance to look really closely at this, but I
would guess
the problem is that in R functions are "clo
2009 11:59
> To: Sklyar, Oleg (London)
> Cc: r-devel@r-project.org
> Subject: Re: [Rd] likely bug in 'serialize' or please explain
> the memory usage
>
> I haven't had a chance to look really closely at this, but I
> would guess
> the problem is that in
I haven't had a chance to look really closely at this, but I would guess
the problem is that in R functions are "closures". The environment
attached to the function will be serialized along with it, so if you
have a big dataset in the same environment, you'll get that too.
I vaguely recall th
Hi all,
assume the following problem: a function call takes a function object
and a data variable and calls this function with this data on a remote
host. It uses serialization to pass both the function and the data via a
socket connection to a remote host. The problem is that depending on the
way