public void replace_at(String bucket, String key, byte[] value, int pos)
throws ThrudocException, InvalidBucketException, TException {
if(!isValidBucket(bucket))
throw new InvalidBucketException();
bucketMap.get(bucket).replace_at(key, value, pos);
}