Reuben Bond
Reuben Bond
Hi Russell, this package is not supported and hasn't been updated in a long time. I'm not sure what the issue might be, but perhaps there were some IL changes...
Thank you, @deipax! Apologies for taking a long time to respond - I was on holiday and then getting back up to speed with Orleans work. I'll try to fix...
We'll have to add custom copiers in order to make this work - the hash code for each object is stored in the HashTable.
I'll take a closer look soon and also fix the generic collections with object hashcode problem.
That sounds like a pretty cool idea, but it's a bit too out-of-scope for this project. It would be worth forking
It would be nice if something like this did exist. Possibly we could have a second project within this repo which adds that kind of functionality.
I imagine we will see serializers form up around the general style of [this API](https://github.com/ReubenBond/Hagar/blob/236d5ef209c16105b62e67949934a6b8fc5275d6/src/Hagar/Codecs/IFieldCodec.cs#L12): ```C# public interface IFieldCodec { void WriteField(ref Writer writer, uint fieldIdDelta, Type expectedType, T value)...
Is there any need for version tolerance in the serialized data? If a user adds a property to a previously serialized object, could that cause an issue? For what it's...
The Orleans.Hosting.Kubernetes package does this: https://dotnet.github.io/orleans/docs/deployment/kubernetes.html It's still in "beta", but if you can try it and provide feedback, that will be helpful
@turowicz the hosting package does a few things: * Configure silos based on the pod's environment (IP, name, ClusterId/ServiceId) * Monitor Kubernetes for changes in active pods, so that deleted...