November 2018
Beginner to intermediate
260 pages
6h 12m
English
Apache Ignite supports the following two distributed data structures for storing objects—Queue and Set. Queue and Set can be deployed in two modes:
The CollectionConfiguration class provides the APIs to configure the collections (Set and Queue).
We can define a distributed Set as follows:
IgniteSet<T> set = ignite.set( "$name", // Set name. new CollectionConfiguration() // Collection configuration.);
The queue can be defined as follows:
IgniteQueue<T> ...
Read now
Unlock full access