Activity overview
Latest activity by poma
Because I want to find "hot" methods. The easy way to do that is to sort them by time usage. But in my case 90% time is waiting for server responce.
My app is web crawler. It usualy run in 100 threads and I want to optimize CPU usage. But it actually shows me network usage because method's timings usually depend on web request time. / comments
Because I want to find "hot" methods. The easy way to do that is to sort them by time usage. But in my case 90% time is waiting for server responce.
My app is web crawler. It usualy run in 100 thre...
My application designed such way that there is functions A(), B(), C(), D()... and all of them make calls to 'Receive' function. I want to exclude it to view how much time funcitons spend EXCEPT making calls to 'Receive' / comments
My application designed such way that there is functions A(), B(), C(), D()... and all of them make calls to 'Receive' function. I want to exclude it to view how much time funcitons spend EXCEPT ma...
How to exclude certain function from results?
I have software that spends lots of time receiving data from socket. How can I exclude 'Receice' function from profiling results?