home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / rexx / 647 < prev    next >
Encoding:
Text File  |  1992-07-23  |  1.2 KB  |  25 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!AWIIMC12.IMC.UNIVIE.AC.AT!CHRISTIAN.J.REICHETZEDER
  3. Organization: Institut fuer Medizinische Computerwissenschaften
  4. Message-ID: <920723.151459.CDT.REICHETZ@AWIIMC12.IMC.UniVie.AC.AT>
  5. Newsgroups: comp.lang.rexx
  6. Date:         Thu, 23 Jul 1992 15:14:59 CDT
  7. Sender:       REXX Programming discussion list <REXXLIST@UGA.BITNET>
  8. From:         Christian.J.Reichetzeder@AWIIMC12.IMC.UNIVIE.AC.AT
  9. Subject:      Re: REXX string handling question
  10. In-Reply-To:  Message of Wed, 22 Jul 92 09:55:35 GMT from <rh@RTGX.HANSE.DE>
  11. Lines: 12
  12.  
  13. On Wed, 22 Jul 92 09:55:35 GMT Ruediger Hoppe said:
  14. >My REXX program started to load the files (together about 65000
  15. >lines, 3,5MB). After a while the swapfile (size onscreen displayed)
  16. >started to grow (with 10 MB Ram?), the disk was really busy.
  17.  
  18. Well, that's at least 65000 variables in  the array. Dunno about OS's REXX but
  19. let's estimate the control block as 40 bytes/variable. This gives an extra 2.5
  20. MB. So loading the files requires 6MB minimum - for the variables only.
  21. Depending on what your program does besides the loading you may actually break
  22. through the ceiling :-)
  23.  
  24. Christian
  25.