64位进程池HashCode兼容处理

时间:2022-06-01 06:55:22

背景

net旧项目使用32位生成的HashCode,存储到数据库中。迁移到64位上,就需要对HashCode做兼容处理。

解决方案

1:进程池配置支持32位程序。

2:对Hashcode做兼容处理,【推荐】。

兼容实现

 static void Main(string[] args)
{ string test = "hello"; //-327419862 64位下
//-695839 32位下
int bit = test.GetHashCode(); int hashCode = CompatibleHash("hello");
}
/// <summary>
/// 64位环境下,生成兼容32位的hashCode。
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public static unsafe int CompatibleHash(string str)
{
fixed (char* charPtr = new String(str.ToCharArray()))
{
int hashCode = ( << ) + ;
int numeric = hashCode;
int* intPtr = (int*)charPtr;
for (int i = str.Length; i > ; i -= )
{
hashCode = ((hashCode << ) + hashCode + (hashCode >> )) ^ intPtr[]; if (i <= ) break;
numeric = ((numeric << ) + numeric + (numeric >> )) ^ intPtr[];
intPtr += ;
}
return hashCode + numeric * ;
}
}