aerospike / aerospike-client-java

Aerospike Java Client Library
Other
236 stars 212 forks source link

Bin values returned as String irrespective of the store type #55

Closed akashagrahari closed 8 years ago

akashagrahari commented 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?

akashagrahari commented 8 years ago

Sorry for this. It's not an issue. False alarm.