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