Results 61 comments of hatoo

I've decided to dump all data to sqlite3 rather than export specific analyses. Could you take a look #263 ?

Interesting! Perhaps using https://github.com/kennytm/rand_regex would be good.

I've come up with some implementation You can install the test version by ``` cargo install --git https://github.com/hatoo/oha.git --branch rand-url oha --rand-regex-url ... ``` I wanna hear your opinion

`.` is a special meaning in regex. So ``` oha --rand-regex-url http://redirect\\.api\\.timelessnesses\\.me/[0-9] ``` would work. This is confusing...

I don't like an approach that wraps the regex with braces because parsing those braces is not trivial in extreme cases such as `http://localhost/{[}{]}`... So I've chosen to just escape...

I don't know about escaping either. > You should add a debug mode to display called urls, no? This is a great idea. I'll implement it.

I merged #549 Escaping on shells depends on how you quote it. in my Bash ``` cargo run -- --dump-urls 16 --rand-regex-url 'http://localhost:3000/path/\?variable=[a-z]{3,15}' ``` Just ok. > I don't get...

Hi, I think it's simply because `wrk` is more optimized than `oha`. Put simply, Ideally, we can distribute all works to each thread statically for this kind a application. But...

@waghanza oha v1.6.0 includes #646 becoming faster there is still some performance gap between `wrk` though. https://github.com/hatoo/oha?tab=readme-ov-file#performance

I think OS error is because of memory shortage. Everytime when exec an app, OS doesn't dealloc used app's region and stack. it leaks. I got ALLOCATOR's dump after execution...