*/
public final Record[] get(Policy policy, Key[] keys, String... binNames)
throws AerospikeException {
Record[] records = new Record[keys.length];
HashSet<String> names = binNamesToHashSet(binNames);
new BatchExecutor(cluster, policy, keys, null, records, names, Command.INFO1_READ);
return records;
}