We have a PHP application, and were thinking it might be advantageous to have the application know if there was a change in its makeup since the last execution. Mainly due to managing caches and such, and knowing that our applications are sometimes accessed by people who don't remember to clear the cache on changes. (Changing the people is the obvious answer, but alas, not really achievable)

We've come up with this, which is the fastest we've managed to eke out, running an average 0.08 on a developer machine for a typical project. We've experimented with shasum,md5 and crc32, and this is the fastest. We are basically md5ing the contents of every file, and md5'ing that output. Security isnt a concern, we're just interested in detecting filesystem changes via a differing checksum.

time (find application/ -path '*/.svn' -prune -o -type f -print0 | xargs -0 md5 | md5)

I suppose the question is, can this be optimised any further?

(I realise that pruning svn will have a cost, but find takes the least amount of time out of the components, so it will be pretty minimal. We're testing this on a working copy atm)

link|improve this question

70% accept rate
2  
Are timestamps simply out of the question? This is THE cheapest way to find out if anything has changed. – Stefan Mai Dec 3 '10 at 8:58
well you would need to keep a list of timestamps for every file, and then compare the lot. that may be faster, i dont know. – jhogendorn Dec 4 '10 at 7:45
feedback

2 Answers

Insteading of actively searching for changes, why not getting notified when something changes. Have a look at PHP's FAM - File Alteration Monitor API

FAM monitors files and directories, notifying interested applications of changes. More information about FAM is available at ยป http://oss.sgi.com/projects/fam/. A PHP script may specify a list of files for FAM to monitor using the functions provided by this extension. The FAM process is started when the first connection from any application to it is opened. It exits after all connections to it have been closed.

link|improve this answer
FAM is fine when you want to monitor something while your application is running, but what about things that changed between runs? I ask from ignorance; maybe FAM handles this nicely. – Sorpigal Dec 3 '10 at 17:19
@Sorpigal DAM is a daemon that runs independent from PHP. You will probably have to collect the change events somewhere and then load them with PHP but I really dont know. I just remembered PHP's got something for the UseCase (which I never used) so I thought I'll add it. Maybe it's of interest to the OP. – Gordon Dec 3 '10 at 19:54
According to php.net/manual/en/fam.installation.php , fam is both a manual install on the server (which we try to avoid doing) and no longer supported etc. Which is unfortunate. – jhogendorn Dec 6 '10 at 0:20
feedback
up vote 0 down vote accepted

We didn't want to use FAM, since we would need to install it on the server, and thats not always possible. Sometimes clients are insistent we deploy on their broken infrastructure. Since it's discontinued, its hard to get that change approved red tape wise also.

The only way to improve the speed of the original version in the question is to make sure your file list is as succinct as possible. IE only hash the directories/files that really matter if changed. Cutting out directories that aren't relevant can give big speed boosts.

Past that, the application was using the function to check if there were changes in order to perform a cache clear if there were. Since we don't really want to halt the application while its doing this, this sort of thing is best farmed out carefully as an asynchronous process using fsockopen. That gives the best 'speed boost' overall, just be careful of race conditions.

Marking this as the 'answer' and upvoting the FAM answer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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