Hi Guys
I have a question regarding ignite cache.
I have a POJO which I want to store in Ignite cache and provide the
functionality of sorting on each field.
The POJO has the following structure:
public class Pojo {
private Map<String, Object> map;
private String requestKey;
private String someObject;
}
I want to store these Pojo Objects in Ignite Cache with sorting and getBy
functionality on each field i.e all the keys of map, requestKey and someObject.
What would be the best possible way? I am thinkning to use SqlQuery but
struggling how to handle map so that the map keys can be strored as table
columns?