.------[ Fogle Cpl Shawn B wrote (2002/11/12 at 04:20:58) ]------
 | 
 |  Does File::Find cache itself to memory even after the script has been
 |  completed? I've put a script together that is going to find ~1785 files in
 |  30 directories..
 |  
 |  The First time I try my script after computer's turned on...
 |  
 |  real        0m14.972s
 |  user        0m0.410s
 |  sys 0m0.270s
 |  
 |  and the second time ~30 minutes later
 |  
 |  real        0m0.482s
 |  user        0m0.420s
 |  sys 0m0.060s
 |  
 |  I don't concider this too much a problem, but this has to be in memory
 |  (right?), will it eventually clear it?
 |  
 `-------------------------------------------------

    I don't believe File::Find caches, what I believe you are seeing is
    your operating system caching the information of the file system. 

    You won't need to worry about it keeping it in memory, or being out
    of date as the operating system will handle both of those issues for
    you automagically. 

 ---------------------------------
   Frank Wiles <[EMAIL PROTECTED]>
   http://frank.wiles.org
 ---------------------------------


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to