I am trying to find a reliable way to uniquely identify and track various HttpRequests on an ASP.NET website.
Does anyone know anything about implementing HttpRequest.GetHashCode ()? In particular, how often do clashes occur?
I understand that HashCodes is not guaranteed to be unique. What I'm trying to understand is statistically how often I could expect HashCode to repeat.
The system I mean will gracefully handle HashCode conflicts, but I want to make sure they are at least as unique as 1 in 1000 or so.
source
share