public void setRange(byte[] key, byte[] value, long start) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.setrange(key, start, value));
       return;
     }
     client.setrange(key, start, value);
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }