I am working on a web application that tracks helpdesk entries. We want to find a way to prevent people from copying and pasting their notes regarding common issues - we want original helpdesk entries to be written for every trouble-call.

In any case, we have thousands of entries and some of them are similar, I am trying to find a way of comparing them all to eachother and pointing out any entries that are very similar to others, i.e. 80% likely to be a direct copy, etc.

I've looked into similar_text() and a few other built-in PHP functions, but I am interested in hearing if anyone else has done something similar before. I don't believe I can use similar_text() efficiently since I need to compare multiple entries against each other, not two strings.

Any input is appreciated.

link|improve this question

You might find this a worthwhile read. – alex May 18 '11 at 4:13
feedback

3 Answers

up vote 0 down vote accepted

I do think similar_text() would do what you want. As long as your machine has enough memory to handle the comparisons, it should work fine. Also look at levenshtein() and soundex().

link|improve this answer
feedback

You may want to consider giving the Solr database a try. While your final schema will likely contain many different fields, the main field would be of the type "text" and would contain the text of the helpdesk entry. The default Solr schema (requiring no modification) automatically tokenizes the data in the text field, indexes the data in such a way that searches for synonyms are found, "cities" will match "cities", etc.

In the end, using Solr, you will end up with a scalable solution both from a performance standpoint and a functional standpoint.

link|improve this answer
feedback

First off, why do you care? If it's a common issue that can be responded with via a copy and paste, why is that not the right thing to do? It sounds like you're generating more work for the sake of work.

Second off, you could look into something like: http://en.wikipedia.org/wiki/W-shingling

If the other options presented here don't suffice.

link|improve this answer
1  
James - I care because we are on a DoD project that requires us to produce quality reports and feedback. This isn't a a traditional "help desk" and in our situation no two situations should be very close. I can't go into all the details, but hopefully that gives you the context. In any case, thanks for the link. – Andy May 18 '11 at 12:27
feedback

Your Answer

 
or
required, but never shown

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