java - Is Distributed SQL Query on Hazelcast for IMap<String, Set< Object>> possible? -


i have imap<string, set<contact>> contact defined

public class contact {     private string name;     private string email;      //getters , setters } 

now, possible query parameter through contacts in hazelcast instance? example:

set<contact> contacts = (set<contact>) map.values(new sqlpredicate("email 'john%' ")); 

i have seen examples above query made imap<string, object> , not imap<string, set<object>>.

is possible make such query?

no not. can possible if query supported multimap. https://github.com/hazelcast/hazelcast/issues/593


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -