Wow, I got it. Thank you very much.
On Fri, Jun 15, 2018 at 11:28 PM, ilya.kasnacheev <[email protected]> wrote: > Hello! > > It turns out that Dalli will marshal data by default, and set 'serialized' > flag in memcached message. > Apache Ignite will treat 'serialized' data as Java Serialized Objects, will > attempt to deserialize, which will promptly fail. > > To avoid this, pass :raw => true option: > > irb(main):022:0> dc.set('foo', 'bax', nil, :raw => true) > => 0 > irb(main):023:0> dc.get('foo') > => "bax" > > Alternatively you can try and use https://github.com/kvs/javaobs as > :serializer :)) > > Regards, > > > > -- > Sent from: http://apache-ignite-users.70518.x6.nabble.com/
