Analytics servers do not differentiate timestamps if they are have the
same second. For example, hit 1 has time stamp 01:01:01.3 and hit 2 has
time stamp 01:01:01.5. Analytics will treat both the timestamps as
01:01:01. Now, the order of the hits will be decided on which hit
arrives first on the servers. So, if hit B reached the servers first,
the order of the hit will be Hit B > hit A.In order to prevent this, it
is advised that the hits should have at least one second's different.
Therefore, h...