我使用Ignite在某些进程之间传递数据并遇到麻烦。我有一个类需要保存一个值,可能是几个不同的数据类型,我真的不想创建单独的对象,缓存和其他资源。因此,为此,我声明该属性为' object'。其中一种可能存储的价值是UInt16。然而,当我将对象放回到另一侧时,它认为类型是Int16,这显然会导致一些问题。
我创建了以下示例程序来显示问题。我通过立即窗口testPerson.TestValue.GetType()测试了类型。在返回正确UInt16的服务器应用程序上,在客户端上它返回Int16。任何帮助非常感谢!
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();
}
}
}
答案 0 :(得分:3)
Ignite二进制协议只有int16
,int32
,int64
,但没有uints
(因为它最初是用Java开发的,其类型系统很差)。
因此UInt16
写为Int16
,依此类推。
Ignite.NET尽力解决此问题。如果TestValue
属性为UInt16
类型,则会对其进行正确的反序列化。
但是使用object
类型,Ignite.NET无法知道原始类型。
<强>解决方法:强>
IBinarizable
或IBinarySerializer
,写一个指示对象类型的附加字段,手动执行投射ISerializable
,在这种情况下,Ignite将自动保留正确的类型(版本2.0 +)BinaryFormatter
并将字节[]存储在Ignite缓存中(如果您不关心SQL和IBinary
)