Hi, We recently upgraded our web servers with PHP 5.3 and found out that there are lots of fstat() calls. fstat() is called 3 times on each file open. Do you know why this happens and how can these calls be reduced? We're running Red Hat 3.4.6, Apache 2.0.59, PHP 5.3.0 with APC. Here's strace example (I replaced full paths by [PATH]): open("[PATH]/RecommendationsManager.php", O_RDONLY) = 19 fstat(19, {st_mode=S_IFREG|0777, st_size=16937, ...}) = 0 fstat(19, {st_mode=S_IFREG|0777, st_size=16937, ...}) = 0 fstat(19, {st_mode=S_IFREG|0777, st_size=16937, ...}) = 0 mmap(NULL, 16937, PROT_READ, MAP_SHARED, 19, 0) = 0x2a9f441000 stat[PATH]RecommendationsManager.php", {st_mode=S_IFREG|0777, st_size=16937, ...}) = 0 munmap(0x2a9f441000, 16937) = 0 close(19) = 0 open[PATH]/Recommendations.php", O_RDONLY) = 19 fstat(19, {st_mode=S_IFREG|0777, st_size=10695, ...}) = 0 fstat(19, {st_mode=S_IFREG|0777, st_size=10695, ...}) = 0 fstat(19, {st_mode=S_IFREG|0777, st_size=10695, ...}) = 0 mmap(NULL, 10695, PROT_READ, MAP_SHARED, 19, 0) = 0x2a9f441000 stat([PATH]/Recommendations.php", {st_mode=S_IFREG|0777, st_size=10695, ...}) = 0 mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2a9f444000 munmap(0x2a9f441000, 10695) = 0 close(19) = 0 Thanks, Olga. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php