hi all
Could somebody advise me how to query properly from Ignite cache based on
composite key condition?
Let's say I have a key class:
public class Key {
private int countryId;
private Date dateKey;
...
}
and a Value class:
public class Value {
private int value1;
private boolean value2;
...
}
so I do something like:
Key key = new Key(...);
Value value = new Value(...);
igniteCache.put(key, value);
...
And at the and I'd like to get all values now from this cache where
"dateKey" filed of all keys is under some conditions (for instance "dateKey"
= "2018-12-31")?
Thank you in advance!
Best regards,
Ihor P.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/