public Long decrBy(byte[] key, long value) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.decrby(key, value));
       return null;
     }
     return client.decrby(key, value).data();
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }