I have a project where I need to apply a hash function to some variables in a sequential way. That action will be done frequently so I need it to be as fast as possible but making sure that there are almost no collisions.
I´ve looked for a hash function in the standard library, but the std::hash is not what I´m looking for.
Does anyone know a library that I can use or an algorithm that I can implement with the performance that I want?