0

I would like to know, is there a way to do CRUD operations using non primary key for a cache defined in grid gain using thin client API (Not by using sql query).

Sunny s
  • 3
  • 1

1 Answers1

0

Without using SQL, Ignite is basically a key-value store. You could use a ScanQuery, which iterates over every record in the named cache.

But really, the answer is to use SQL.

Stephen Darlington
  • 51,577
  • 12
  • 107
  • 152