Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Multi-Threads

 [1/5] from: petr:krenzelok:trz:cz at: 6-Jan-2001 21:10


----- Original Message ----- From: Rondon Andrade <[rondon--andrade--uol--com--br]> To: <[rebol-list--rebol--com]> Sent: Saturday, January 06, 2001 8:19 PM Subject: [REBOL] Multi-Threads
> Hi everybody!! > > 1.How can I start various scripts simultaneously (do %script1.r %script2 > %script3, like java in Multi-threads ? The way I'm doing I just see it > running in serial not in parallel process.
->> help launch USAGE: LAUNCH value /reboot DESCRIPTION: Launches a new REBOL interpreter process. LAUNCH is a native value. ARGUMENTS: value -- The command-line arguments (Type: any-string) REFINEMENTS: /reboot ->>
> 2. How many simultaneous connections a rebol script can hold? Or Does it > depend upon the server ? I mean, if I put my application in my apache
server
> does it generate a lot of overhead ?
Hmm, that's not so simple imo. I am not sure you should maintain connection when using Apache web server. If you are using Apache, you are doing CGI with rebol, no? But maybe I just fully don't understand your intentions ... Cheers, -pekr-

 [2/5] from: al:bri:xtra at: 7-Jan-2001 8:52


Rondon de Andrade wrote:
> 1.How can I start various scripts simultaneously (do %script1.r %script2
%script3, like java in Multi-threads ? The way I'm doing I just see it running in serial not in parallel process.
>> help launch
USAGE: LAUNCH value /reboot DESCRIPTION: Launches a new REBOL interpreter process. LAUNCH is a native value. ARGUMENTS: value -- The command-line arguments (Type: any-string) REFINEMENTS: /reboot Andrew Martin ICQ: 26227169 http://members.nbci.com/AndrewMartin/

 [3/5] from: rondon::andrade::uol::com::br at: 6-Jan-2001 23:47


In My second question.. I'd like to know with a Server Stress, the application in Rebol How many connections can handle as a CGI application? Or Does it depends just upon the server ? Thanks in advance. Rondon

 [4/5] from: petr:krenzelok:trz:cz at: 7-Jan-2001 9:50


----- Original Message ----- From: Rondon Andrade <[rondon--andrade--uol--com--br]> To: <[rebol-list--rebol--com]> Sent: Sunday, January 07, 2001 2:47 AM Subject: [REBOL] Re: Multi-Threads
> In My second question.. I'd like to know with a Server Stress, the > application in Rebol How many connections can handle as a CGI application? > Or Does it depends just upon the server ?
I think it's the server's work. In my opinion you never get physical connection. Apache hanldes all client connections and just passes info to CGI app or module (if you have rebol module support for apache). There is lot of info on how to use Rebol in form of CGI around ... check docs, faq, etc .. -pekr-

 [5/5] from: rondon:andrade:uol at: 6-Jan-2001 17:19


Hi everybody!! 1.How can I start various scripts simultaneously (do %script1.r %script2 %script3, like java in Multi-threads ? The way I'm doing I just see it running in serial not in parallel process. 2. How many simultaneous connections a rebol script can hold? Or Does it depend upon the server ? I mean, if I put my application in my apache server does it generate a lot of overhead ? Thanks in advance. Rondon de Andrade