November 2018
Beginner to intermediate
260 pages
6h 12m
English
Apache Ignite's key-value pair API is used to store objects in a cache and retrieve values using keys. Apache Ignite's query API lets us query objects using expressions. The ScanQuery API allows us to execute distributed queries over cache objects. We are going to create a cache, populate it with a collection of objects, and then use ScanQuery to retrieve them. Follow these steps to try out the ScanQuery API:
public class Player implements Serializable { private static final long serialVersionUID = 1L; private Long id; private String name; private String team; private double salary; public Player(Long id, String name, String team, double salary) { this.id = id; this.name = name; ...Read now
Unlock full access