[Rendimiento] ejecucion de un script por mucho tiempo !???

Iniciado por Diabliyo, 19 Marzo 2012, 02:49 AM

0 Miembros y 3 Visitantes están viendo este tema.

~ Yoya ~

Aquí un ejemplo que hice, después de instalar debian xD.

Código (php) [Seleccionar]
<?php

echo "Memoria inicial -> "memory_usage();

$hola  '111111AAAA????//***';
$array = array(1,'1¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11',3,8,'WWWWW''¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11');

$xd '¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11¿Ç$Q#$$%GGGGD11';

echo 
"Memoria al crear algunas variables -> ".memory_usage();

echo 
"\n[+]Eliminando variables para poder liberar mas memoria\n\n";

unset(
$hola$array$xd);

echo 
"Memoria despues de liberar -> "memory_usage();
function 
memory_usage() {

return number_format((memory_get_usage()/1024),2)." kbs\n";
}

?>



Salida:
yoya@Debian:~/www/public$ php index.php
Memoria inicial -> 116.32 kbs
Memoria al crear algunas variables -> 117.07 kbs

[+]Eliminando variables para poder liberar mas memoria

Memoria despues de liberar -> 116.34 kbs
Mi madre me dijo que estoy destinado a ser pobre toda la vida.
Engineering is the art of balancing the benefits and drawbacks of any approach.