如何将对象序列化为 Geode

How to serialize an object to Geode

我对 apache geode 还是很陌生...

我目前使用 fromData(IPdxReader)toData(IPdxWriter) 将对象放在 geode 区域中,并且我 write/read 逐行。

我需要添加一个新对象,它有数百行那么长。

如何在不逐行序列化的情况下序列化整个对象?

在:

private void HandleCreateAndUpdate(EntryEvent<TKey, TVal> ev)

选项 1:

IPdxInstance pdx = (IPdxInstance)ev.NewValue;
AutoBooker qb = (AutoBooker)pdx.GetObject();

选项 2:

AutoBooker qb = (dynamic)ev.NewValue;