Apache Ignite将UInt16转换为Int16

时间:2017-12-01 13:22:27

标签: c# ignite

我使用Ignite在某些进程之间传递数据并遇到麻烦。我有一个类需要保存一个值,可能是几个不同的数据类型,我真的不想创建单独的对象,缓存和其他资源。因此,为此,我声明该属性为' object'。其中一种可能存储的价值是UInt16。然而,当我将对象放回到另一侧时,它认为类型是Int16,这显然会导致一些问题。

我创建了以下示例程序来显示问题。我通过立即窗口testPerson.TestValue.GetType()测试了类型。在返回正确UInt16的服务器应用程序上,在客户端上它返回Int16。任何帮助非常感谢!

enter image description here

Person.cs

using System;

namespace Common
{
    [Serializable]
    public class Person
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public object TestValue { get; set; }
    }
}

ClientApp Program.cs

using Apache.Ignite.Core;
using Apache.Ignite.Core.Cache;
using Common;
using System;

namespace ClientApp
{
    class Program
    {
        static void Main(string[] args)
        {
            var config = new IgniteConfiguration
            {
                IgniteInstanceName = "IgniteTest",
                BinaryConfiguration = new Apache.Ignite.Core.Binary.BinaryConfiguration(typeof(Person)),
                ClientMode = true
            };

            IIgnite ignite = Ignition.Start(config);

            ICache<int, Person> peopleCache = ignite.GetOrCreateCache<int, Person>("People");

            Person testPerson = peopleCache.Get(1);

            Console.ReadLine();
        }
    }
}

ServerApp Program.cs

using Apache.Ignite.Core;
using Apache.Ignite.Core.Cache;
using Common;
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            var config = new IgniteConfiguration
            {
                IgniteInstanceName = "IgniteTest",
                BinaryConfiguration = new Apache.Ignite.Core.Binary.BinaryConfiguration(typeof(Person)),
                ClientMode = false
            };

            IIgnite ignite = Ignition.Start(config);

            UInt16 testValue = 1005;

            var person1 = new Person()
            {
                Id = 1,
                Name = "Bill Cobble",
                TestValue = testValue
            };

            ignite.DestroyCache("People");
            ICache<int, Person> peopleCache = ignite.CreateCache<int, Person>("People");

            IFormatter formatter = new BinaryFormatter();
            Stream stream = new MemoryStream();
            formatter.Serialize(stream, person1);

            stream.Position = 0;
            Person result = formatter.Deserialize(stream) as Person;

            peopleCache.Put(person1.Id, person1);

            Console.ReadLine();
        }
    }
}

1 个答案:

答案 0 :(得分:3)

Ignite二进制协议只有int16int32int64,但没有uints(因为它最初是用Java开发的,其类型系统很差)。

因此UInt16写为Int16,依此类推。

Ignite.NET尽力解决此问题。如果TestValue属性为UInt16类型,则会对其进行正确的反序列化。

但是使用object类型,Ignite.NET无法知道原始类型。

<强>解决方法:

  • 实施IBinarizableIBinarySerializer,写一个指示对象类型的附加字段,手动执行投射
  • 实施ISerializable,在这种情况下,Ignite将自动保留正确的类型(版本2.0 +)
  • 使用BinaryFormatter并将字节[]存储在Ignite缓存中(如果您不关心SQL和IBinary