Closed akashagrahari closed 8 years ago
I am performing this for a record which has binvalues of types double and list.
Key key = new Key(namespace,set,recordKey); Record record = aerospikeClient.get(null, key);
The value for record.bins.get("binName").getClass() is always class java.lang.String irrespective of the bin value. Is this the expected behavior?
record.bins.get("binName").getClass()
class java.lang.String
Sorry for this. It's not an issue. False alarm.
I am performing this for a record which has binvalues of types double and list.
The value for
record.bins.get("binName").getClass()
is alwaysclass java.lang.String
irrespective of the bin value. Is this the expected behavior?