Can ignite C++ thin-client be used to create queryable fields (of cache)?

65 views Asked by At

It seems that only ignite c++ thick client is able to config the queryable fields of a cache (e.g through a Spring configuration file), can anyone use thin client to do the same thing?

I can only create cache (using thin client) that is retrievable throught key-value api, but not with SQL query.

1

There are 1 answers

0
Stephen Darlington On BEST ANSWER

You are correct: the C++ thin-client does not appear to directly support creating tables with SQL support.

As a workaround, you could create a Java task that creates tables and call that from your C++ client.