Can we configure both set and list types for different multimaps in hazelcast? -
i using multimap set in hazelcast there requirement use of multimap both list , set(two different multimaps same client).changing hazelcast.xml can either have set type multimap or list type multimap.is there way have both types?
it's absolutely possible. include in hazelcast.xml
<multimap name="set*"> <value-collection-type>set</value-collection-type> </multimap> <multimap name="list*"> <value-collection-type>list</value-collection-type> </multimap>
all multimaps name starting prefix "set-" use set store elements , multimaps starting prefix "list" use list.
Comments
Post a Comment