Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two data sources, and both of them return JSONs.

I want to ensure that there is some percentage of match (overlap of data, if you will) in the two JSONs, so as to collate them and store in a single record.

Is comparing the entropy of the two strings the best way? Are there any other solutions? I use Java, and could also use scala for the same.

share|improve this question

1 Answer

up vote 2 down vote accepted

You can convert them to xml and then use xdiff algorithm, or put every json record to a single line, and use unix diff. Or convert it to an internal tree representation, and apply parallel tree difference algorithm. That depends on what kind of difference are you looking for and doesn't depend on the implementation language.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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