in reply to Re^2: Is Using Threads Slower Than Not Using Threads?
in thread Is Using Threads Slower Than Not Using Threads?

For the hash lookup to work the key string must exactly match. IP numbers may optionally have leading 0 digits to for a three digit number but the strings '010.001.001.001' and '10.1.1.1' are not eq so you should normalise the IP number to one version or the other - always three digit numbers or always remove leading 0 digits.

True laziness is hard work
  • Comment on Re^3: Is Using Threads Slower Than Not Using Threads?