public Boolean exists(byte[] key) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.exists(key));
       return null;
     }
     return client.exists(key).data() == 1;
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }