I know that the only bit of code running is, for one client:
while (true) { $out = socket_read($socket, 1024); echo($out); usleep(5000); }
But, the memory usage of apache keeps increasing by something like 8K per second. Is there any way to fix it?