http://qs321.pair.com?node_id=464321


in reply to Re: Reopen file when contents changed?
in thread Reopen file when contents changed?

Possibly, but AFAIK forking a shell requires resources, which will impact the measurements; opening a file will not...

--------------------------------
An idea is not responsible for the people who believe in it...

  • Comment on Re^2: Reopen file when contents changed?

Replies are listed 'Best First'.
Re^3: Reopen file when contents changed?
by ruoso (Curate) on Jun 07, 2005 at 18:14 UTC
    Forking anything would require resources... There is no need to fork just to read the contents of a file. But anyway, I think keeping the file open and just seek(0) is easier than opening the file everytime. I don't know how much impact open() would generate on load, but I do think seek(0) would cause even less impact.