Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.



Need advise here. Currently I am get the memory usage of the script by using this code

$sysMem = escapeshellcmd(system('echo $(free)'));
memory_get_usage();

This is the result i am getting :

Total Mem : 1034708
Used Mem : 1014572
Free Mem : 20136
Shared Mem : 0
Buff Mem : 73456
Cached Mem : 480752
----------------------------------------------------
Mem Usegae : 509464

Total Mem : 1034708
Used Mem : 1014564
Free Mem : 20144
Shared Mem : 0
Buff Mem : 73456
Cached Mem : 480828
----------------------------------------------------
Mem Usegae : 343904

However i found out that the memory usage is kind of inconsistent and at time the memory usage might even exceed the total memory which is impossible.

Is memory_get_usage(); the best option to get the memory usage of the php script? Or is it i need to use unset() function. However even if i use the memory still about the same

if there are other methods please kindly advise.

Thanks a millions
Guys and Ladies

share|improve this question
It's not impossible to have ram usage exceed physical ram - there's always virtual memory. – Marc B Sep 1 '11 at 16:35

1 Answer

This is going to be difficult to state precisely. You might need to specify more carefully exactly what you are trying to do.

For one, calling out to the 'free' command is stepping off into the void of Linux's virtual memory scheme. You need to know how to interpret these meaningfully.

As far as I can tell, get_memory_usage could behave in a number of different ways depending on how PHP is running. It appears to be returning how much memory is allocated to the current PHP interpreter in total. This is unlikely to be indicative of how much memory the current script is using.

Also, free returns memory in kilobytes. PHP's get_memory_usage returns it in bytes. You are off by a factor of 1024. Divide the latter by 1024 to have comparable units.

So what are you trying to do?

share|improve this answer
Hi Thanks for your reply. – Brandothh Sep 2 '11 at 1:20
what i am actually trying to do is to optimize my script to run. I am currently using curl function in php for multi threading which is running all day. However at a certain time it die off. so i was thinking of getting the memory usage of the script and then get the system memory usage available to do some calculation to check if there is enough memory to proceed with script or to sleep the script. – Brandothh Sep 2 '11 at 1:35
Sleeping the script is not going to free memory. The PHP interpreter is going to hold onto that memory already allocated unless the script actually terminates. – Gian Sep 7 '11 at 14:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.