public Long append(byte[] key, byte[] value) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.append(key, value));
       return null;
     }
     return client.append(key, value).data();
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }