Lets assume that following urls are pointing to the same content.
How can I check if those links are pointing to the same content? I am particularly using Ruby but any other suggestion is welcome as well...
|
Lets assume that following urls are pointing to the same content. How can I check if those links are pointing to the same content? I am particularly using Ruby but any other suggestion is welcome as well...
| ||||
|
feedback
|
|
The first naive guess is to get the content and create a hash. However, if the content has any dynamic behavior at all, this is not a good metric.
If we repeat the same thing with say: www.google.com and google.com the hashes won't match because there may be slight variations to content. You can use the Jaro Winkler measure for strings, which gives you a value between 0 and 1 for how similar two strings are. There's a pure implementation of the algorithm too in ruby. The native implementations are much faster. I've used the amatch library in the past.
| |||
|
feedback
|