return bucketMap.get(bucket).retrieve_at(key, pos);
}
public List<String> scan(String bucket, String seed, int count) throws InvalidBucketException, TException {
if(!isValidBucket(bucket))
throw new InvalidBucketException();
return bucketMap.get(bucket).scan(seed,count);
}