I'm writing an application that needs to store a ton of objects and some attributes.
I was wondering, based on python's inner workings, if it's more memory efficient to have one huge dictionary or many small dictionaries and then one dictionary that just references the smaller dictionaries?
Any information would be helpful.
Thanks!