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

[REBOL] REBOL/BASE testing

From: rebol-list2::seznam::cz at: 12-Oct-2002 19:38

Hello rebol-list, I've finally found some time to test the Rebol/base... I choosed one of my cgi scripts and set the Rebol/base as the interpreter, I had to add decode-cgi function to this script to make it working and run this simple test:
>> t: now/time/precise loop 1000 [read http://127.0.0.1/cgi-bin/system/poc3.r?i=rur-tes] t2: now/time/precise - t
== 0:00:36.552
>> t: now/time/precise loop 1000 [read http://127.0.0.1/cgi-bin/system/poc.r?i=rur-tes] t2: now/time/precise - t
== 0:01:11.342 As you can see the Rebol/BASE is almost 3 times faster. It really worhts to rewrite some of the server-side scripts to be runable with it:-)) PS: I'm now thinking about some way how to find and import the missing functions into the Rebol/Base from Core, do you have any ideas?