public Boolean sRem(byte[] key, byte[] value) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.srem(key, new Object[] {value}));
       return null;
     }
     return client.srem(key, new Object[] {value}).data() == 1;
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }