Need to plug custom equals method for object in ignite.

2022-06-17 Thread Saurabh Satardekar
Respected Sir/Madam, We have following use case where we have Book class as follows : public class Book { private int price; private String bookName; private String authorName; public Book( String bookName, String authorName, int price ) { this.bookName = bookName; this.authorName = authorN

Re: Need to plug custom equals method for object in ignite.

2022-06-17 Thread Stephen Darlington
If you enable SQL on your table, then you can run a query that filters on a subset of the properties. You can also add an index to make the lookup more quickly. > On 17 Jun 2022, at 16:55, Saurabh Satardekar > wrote: > > Respected Sir/Madam, > We have following use case where we have Book cla