kjk
kjk

Reputation: 126

Persistent storage with Ignite C++

I'm new in Apache Ignite and was able to run persistence store with Cassandra using Java. Is its possibly to do the same using Ignite C++? If so how is the Cassandra column family object serialization done with C++ Class?

Upvotes: 1

Views: 253

Answers (1)

Valentin Kulichenko
Valentin Kulichenko

Reputation: 8390

Ignite stores data in binary format [1] and the cache store works with binary object rather than with your classes. Therefore, there is no difference whether data was originated from Java, C++ or .NET. You can use persistence functionality without changes.

[1] https://apacheignite.readme.io/docs/binary-marshaller

Upvotes: 1

Related Questions