Re: How to use c++ client get cache data from java server

2019-01-23 Thread Igor Sapego
Hi, BinaryObject in C++ is not the same thing as in Java right now. Currently C++ client do not support "BinaryObject" construction and access. You may now only operate on actual serializable objects, for which BinaryObject class template has been specialized. You may find details and examples

How to use c++ client get cache data from java server

2019-01-23 Thread luodandan
I am new to Ignite. Now, i want to load a CSV file into java server and access the cache using the C++ client. The example code is as below. Java Code CacheConfiguration cfg = new CacheConfiguration("binaryCache"); // Sliding window of 1800 seconds.