Hi I have created a table with three columns which I populated using sql.
The table is called descriptor and the columns are id,name,description Now I wonder, how can I query this table to get a list of BinaryObjects? In the documentation I found this example: BinaryObject key = ignite.binary().toBinary(new MyKey()); BinaryObject result = cache.get(key); What does the class MyKey look like ? ./t
