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