Shoaib

Results 18 comments of Shoaib

Yup like superfast. Let me know if you change your mind. If I recall the change was not too complicated. I don't mind maintaining on my fork

Late to join the party, here are my thoughts. I've listed them in the table below | func/method | use case | other requirements | | ------------- | ------------- |...

@Amerousful I pointed to the fact that sometimes you'll have to use the correct type. I am not a 100% sure how this would work with gRPC plugin, where the...

@slandelle exactly my point, and my thoughts are gatling would see issues open up for "can we get randomDouble" etc. Just trying to avoid the misses before this roles out....

@Amerousful There is an edge case with rounding double. A quick hacky way is `Math.round(nextDouble(min,max) * pow(10, digits)) / pow(10, digits)`, but this can break _near_ double max value. @slandelle...

I'm aware of the BigDecimal and can make the changes. My only concern is performance as internally it will convert to string/char array. I thought of doing string with formatter...

Just wondering why this can't be achieved by a session function. (Been there done that, so it works, sorry I don't have the code with me) 1. Virtual user starts...

@slandelle Yikes, I didn't think about that. I think what @Dmitriy-Smol has requested, is similar to the RPOPLPUSH that I did. Wouldn't it be a similar issue of blocking call...

@slandelle I'm thinking of two version of randomUUID, The java OOTB uses a secure random = slow. Would be nice to have a faster one where I build it up...