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

[REBOL] Re: Rebol API to DyBASE

From: chris:langreiter at: 17-Dec-2003 17:48

> Compare the following results: > Rebol: 18 seconds
h: make hash! 100000 start: now/time/precise for i 1 100000 1 [ insert tail h i ] now/time/precise - start == 0:00:00.25 That's 250 msec. Your version runs in about 350 msec. Since I can't imagine you're running a machine 50 times slower than mine, there's something seriously weird going on ... BTW, I still don't quite get why append has to be so much slower than insert tail. Does anyone have any ideas wrt/ that issue?