0
votes
2answers
28 views
Comparing java memory heap dumps: Memory profiling for Java desktop application
Hi,
This is a more specific question to follow up on another question that I have asked recently. A correct answer for this question will earn a correct answer for that previous q …
3
votes
7answers
95 views
Memory profiling for Java desktop application
Hi,
My application loads a data set of approx. 85bm to 100mb each time. The application's memory limit is set to 512mb, and this is, theoretically, more than enough.
However, I f …
0
votes
1answer
15 views
kcachegrind for RHEL 5.1
I'm about to perform profiling to application. I have vagrind, but kcachegrind is not installed.
Tryied to compile without success.
Where it can be obtained from for RHEL 5.1?
3
votes
11answers
188 views
Java: Finding out what is using all the memory
I have a java application that runs out of memory, but I have no idea which code is allocating the memory. Is there an application with which I can check this? I use Eclipse.
1
vote
7answers
189 views
Java memory leak detection tools
I am now trying to detect memory leak in our java codes. I understand there are a few of detection tools such as memory manager that comes with eclipse, and NetBeans. Based on your …
0
votes
3answers
68 views
Profiling Library for .NET
Edit: I'm NOT asking for a way to implement a profiling library, I'm asking if there's one (preferably free) out there.
Although there are a lot of commercial and free profilers f …
1
vote
3answers
50 views
Visual Studio 2008 Performance Profiler Problems with ASP.NET
I've been trying, and failing, to get VS.NET 2008 to profile an ASP.NET MVC application. When I try and start a profiling session I get a generic server 500 error from VS.NET:
The …
1
vote
7answers
120 views
Best books on how to optimize and profile Java code
What are Best books on how to optimize and profile Java code?
2
votes
2answers
36 views
Creating memory snapshot from inside the code (Java)
Is there a possibility, that from inside your program, by calling some java library, make java create memory snapshot of that program? (default .hprof file)
3
votes
1answer
51 views
Cabal not installing dependencies when needing profiling libraries?
I want to compile my program with profiling, so I run:
$ cabal configure --enable-executable-profiling
...
$ cabal build
...
Could not find module 'Graphics.UI.GLUT':
Pe …
3
votes
4answers
68 views
how to perform profiling for a website?
I currently have a django site, and it's kind of slow, so I want to understand what's going on. How can I profile it so to differentiate between:
effect of the network
effect of …
1
vote
2answers
27 views
Timing quartz task execution duration
Is there a standard way of logging the time Quartz takes to execute a task? I'm open to Spring based solutions as well, as I'm using both.
4
votes
5answers
108 views
accurately measure time python function takes
Hello,
I need to measure the time certain parts of my program take (not for debugging but as a feature in the output). Accuracy is important because the total time will be a fract …
4
votes
9answers
254 views
My (huge) application throws an OutOfMemoryException, now what?
This is by far the most complex software I've built and now it seems to be running out of memory at some point. I haven't done extensive testing yet, because I'm a bit lost how I s …
2
votes
3answers
66 views
How to debug a MemoryError in Python? Tools for tracking memory use?
I have a Python program that dies with a MemoryError when I feed it a large file. Are there any tools that I could use to figure out what's using the memory?
This program ran fin …
