I generating a bunch of hash values for the same key using MurmerHash like the following. It outputs 50 different hash values for 50 different seeds.
for(int seed=0; seed<50; seed++)
MurmurHash3_x86_32(key, strlen(key), seed, &hash);
But it is not so time efficient when I have a large number of keys i.e. 10 million keys. Is there any other way to make it faster?