I want to store two records in a set only when those records have different values in a specified bin. For example, in a set containing 3 bins of (CS, P, Fees)
, I tried to store 3 different records:
Record1(CS1, P1, Fees1)
Record2(CS2, P1, Fees2)
Record3(CS3, P2, Fees2)
Only Record1
and Record3
are allowed and Record2
is not allowed.
How can I make a bin unique in Aerospike?