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

[REBOL] Re: About Rebol/Apache

From: petr:krenzelok:trz:cz at: 26-Apr-2001 18:49

----- Original Message ----- From: "Holger Kruse" <[holger--rebol--com]> To: <[rebol-list--rebol--com]> Sent: Thursday, April 26, 2001 4:08 PM Subject: [REBOL] Re: About Rebol/Apache
> On Wed, Apr 25, 2001 at 10:44:06PM -0700, David Vydra wrote: > > > > Holger, > > > > If I am trying to build a multiuser site with db support, am I still
making blocking calls to the db?
> Yes. > > > If so, is there a way to load-balance several R/Commands running
FastCGI?
> You would have to put a proxy between your web server and the Command
instances
> which acts as a dynamic scheduler.
-could such proxy be built in Rebol? Would it be efficient? Sterling's proxy.r is nice example of proxy built directly in rebol. It registers pairs of "request" "answer" ports and does some kind of scheduling (based upon events occuring on certain ports we are waiting on). Maybe one /command process could act as proxy and FastCGI interface, and it could 'launch another rebol instances to do the task, or few rebol instances could be pre-launched and wait for instructions on some TCP port. IIRC there were script called "bounce" or something similar on rebol.org, showing task distribution thru several interconnected rebols ... ... or am I completly wrong? Thanks, -pekr-