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