I have a dictionary of objects:
# I have thousands of objects in my real world scenario
dic = {'k1':obj1, 'k2':obj2, 'k3':obj3, ...}
# keys are string
# objs are MyObject
Edit: Sorry for letting doubt in the question. Here is the exact class and the like() function:
class MyObject(object):
def __init__(self, period, dimensions):
self.id = None
self.period = period # period is etree.Element
self.dimensions = dict() # id -> lxml.XMLElements
for dim in dimensions:
# there must be only one child: the typed dimension
self.dimensions[dim.get('dimension')] = dim[0]
self._hash = None
def __eq__(self, other):
return isinstance(other, MyObject)
and self.period == other.period
and self.dimensions == other.dimensions
def like(self, other):
return (other is not None \
and self.period == other.period \
and self.dimensions.keys() == other.dimensions.keys())
I wonder how I can have the best implementation for finding objects in dictionary dic that are similar to a given value val. Something equivalent to:
def find_keys(dic, val):
return [v for v in dic if v.like(val))
However this method is too slow, because I have thousands of iterations over find-keys() and thousands objects in the dictionary.
Right now, I have implemented a __hash__(self) on these objects, and added the key as a property:
def __hash__(self):
if self._hash is None:
self._hash = hash(self.periodtype) ^ \
hash(tuple(sorted(self.dimensions.values())))
return self._hash
Then, I have built a lookup dictionary that is
hash_dic = { hash(obj1): [obj1], hash(obj2): [obj2, obj3] }
And this new search method is much faster:
def find_keys_fast(dic, val):
prefetched=hash_dic[hash(val)]
return [x.key for x in prefetched if x.like(val)]
Since __hash__ is a native function internally used by Sets and Dictionaries, is there anything faster or more elegant I could do?
hashexplicitly on dictionary keys, it's done automatically. – Michael J. Barber Jul 19 '11 at 16:47xhelps you as you don't use it inlikemethod at all. – tomasz Jul 19 '11 at 17:17