I have a massive python dictionary with over 90,000 entries. For reasons I won't get into, I need to store this dictionary in my database and then at a later point recompile dictionary from the database entries.
I am trying to set up a procedure to verify that my storage and recompilation was faithful and that my new dictionary is equivalent to the old one. What is the best methodology for testing this.
There are minor differences and I want to figure out what they are.
new == old... – Jochen Ritzel Sep 30 '11 at 14:34==check, or would you be interested in knowing which elements are different (e.g., for debugging)? – Phoenix Sep 30 '11 at 14:38