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