Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preliminary relational persistence queries #1682

Merged
merged 1 commit into from
Aug 1, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/NuGet/Microsoft.Orleans.OrleansSqlUtils.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@
<copyright>Copyright Microsoft 2015</copyright>
<tags>Orleans Cloud-Computing Actor-Model Actors Distributed-Systems C# .NET</tags>
<dependencies>
<dependency id="Microsoft.Orleans.Core" version="$version$" />
<dependency id="EnterpriseLibrary.TransientFaultHandling" version="6.0.1304.0" />
<dependency id="Microsoft.Azure.SqlDatabase.ElasticScale.Client" version="1.1.0" />
<dependency id="Microsoft.Tpl.Dataflow" version="4.5.24" />
<dependency id="Microsoft.Orleans.Core" version="$version$" />
<dependency id="Newtonsoft.Json" version="7.0.1" />
</dependencies>
</metadata>
<files>
Expand Down
6 changes: 3 additions & 3 deletions src/Orleans/IDs/JenkinsHash.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ namespace Orleans
// Based on the version in http://home.comcast.net/~bretm/hash/7.html, which is based on that
// in http://burtleburtle.net/bob/hash/evahash.html.
// Note that we only use the version that takes three ulongs, which was written by the Orleans team.
internal class JenkinsHash
public class JenkinsHash
{
internal static class Factory
public static class Factory
{
private static readonly ThreadLocal<JenkinsHash> hashGenerator = new ThreadLocal<JenkinsHash>(() => new JenkinsHash());

Expand Down Expand Up @@ -118,6 +118,6 @@ public uint ComputeHash(ulong u1, ulong u2, ulong u3)
c += 24;
Mix();
return c;
}
}
}
}
Loading