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

[REBOL] Re: parse vs. load/markup (a bit long)

From: rotenca:telvia:it at: 24-Jan-2002 18:45

Hi all,
> Now a loop of 100000 iteration: > > >> timer2 [do select has 'TEXT-LIST] [do select blk 'TEXT-LIST] 100000 > 1 0:00:00.55 > 2 0:00:02.14
A little correction to my test, to remove the 'do:
>> timer2 [select has 'H£] [select blk 'H£] 100000
1 0:00:00.33 2 0:00:02.03
>> timer2 [select has 'ANIME] [select blk 'ANIME] 100000
1 0:00:00.28 2 0:00:01.98
>> timer2 [select has 'H3] [select blk 'H3] 100000
1 0:00:00.33 2 0:00:01.1
>> timer2 [select has 'IMAGE] [select blk 'IMAGE] 100000
1 0:00:00.39 2 0:00:00.38 Average 88 items: Block: 1-1.10 against Hash: 0.33-0.6 which should confirm what we know about find with hash! and block!. --- Ciao Romano