php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #37845 Memory Leak on large # of files
Submitted: 2006-06-19 10:43 UTC Modified: 2006-06-19 10:56 UTC
From: rr at ronrosen dot com Assigned:
Status: Not a bug Package: Streams related
PHP Version: 5.1.4 OS: i386-redhat-linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: rr at ronrosen dot com
New email:
PHP Version: OS:

 

 [2006-06-19 10:43 UTC] rr at ronrosen dot com
Description:
------------
When a large # of files are opend, written and closed, memory 
is never released. I tested it on windows and linux. Samve 
Problem. Strange thing, when the files are deleted on the 
linux version, the memory is released.

Reproduce code:
---------------
for($i=0;$i<10000;$i++)
{
	$h = fopen('/home/testdir/testfile'.$i.'.html','w');

	fwrite($h,'AAAA');

	fclose($h);


}



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-06-19 10:51 UTC] rr at ronrosen dot com
one more thing. If the fwrite is eliminated, the mempry issuse 
does not happen.
 [2006-06-19 10:56 UTC] mike@php.net
The OS decides when memory mapped files are released.
 [2006-06-19 10:56 UTC] mike@php.net
.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 23:01:28 2024 UTC