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

[REBOL] Re: Slight Rebol performace comparison ...

From: joel:neely:fedex at: 13-Jun-2001 1:53

Hi, Petr, Just one quick observation... Petr Krenzelok wrote:
> Ryan Cole wrote: > > > Great story Petr! > > I copied/appended test source today to some final size of > 21 MB and was interested in performance tests once again: > > VO code - 38 sec > Rebol code - 35 sec (rebol start not measured, but Rebol > still nicely compares to compiled language (VO uses native > code - no p-code)) >
Based on some benchmarking I did a couple of years ago (in Java, if anyone was curious) the performance consequencess of different I/O buffering schemes (i.e., character-at-a-time, line-at-a-time, big-buffer-at-a-time, or all-input-at-once) can easily dominate total run time, swamping any performance gains from compilation vs. interpretation for file-oriented (non-compute-bound) processes. We know what REBOl does about my-file-data: read %somefile.data but do you know what type of I/O scheme your collegue's VO program was using? -jn- ------------------------------------------------------------ Programming languages: compact, powerful, simple ... Pick any two! joel'dot'neely'at'fedex'dot'com