----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 06, 2000 10:51 PM
Subject: [REBOL] what type of tcp port's best ...? Re:
> [EMAIL PROTECTED] wrote:
> >
> > Or is it better to generate the script-file? But then I would have to
> > save image data and load it into /View from harddrive. I just thought
> > delivering whole data thru tcp/ip port would be faster, but that's the
> > question ..
>
> Hrmm..thinking about this..(.oO(-------)) <-- empty thoughts lol
>
> Okay, depending on the size of the script you could do it one of two
> ways:
>
> 1. Build script, send through to waiting /view
>
> ex: SERVER CLIENT
> poke, prod.. yeah?
> catch! okay, receiving..
> I'm done yes, you are, doing script now, cya
> okay <click>
>
> 2. Build script, save to disk, tell /view where to find it (one line..)
>
> ex: SERVER CLIENT
> (builds script,
> saves to disk)
> poke, prod.. yeah, what?
> do this please uhmm..sure, not a problem
> thanks cya
> delete file(s)
Variation on 2. Build script, save image to disk, view script constantly
polls a directory and displays anything new. This way view is always running
so you avoid the startup lag. As for speed vs using ports, it depends on
file-size and harddrive speed. It is the simpler solution, would test first
to see if speed is acceptable.
Cheers,
Allen K