python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Profiling memory leak in a non-redundant uptime-critical application
We have a major challenge which have been stumping us for months now.
A couple of months ago, we took over the maintenance of a legacy application, where the last developer to touch the code, left the...

Morten Kirsbo
Votes: 0
Answers: 3
What does this sentence mean in the context of perf tool: "Supports address when precise (Precise event)"?
This line appears under memory events in perf tool.
CPU: Intel Xeon Gold

Vishal Deka
Votes: 0
Answers: 1
profiling applications of functions using memory profiler in python
I wish to profile my applied functions in my script. I have know how to profile the original functions when fully written out as such:
@profile
def get_df_from_sql(query_sql, df):
try:
with open(q...
freddy_or_json
Votes: 0
Answers: 1
How to sum up the memory usage data from memory-profiler in Python?
I have a question regarding the usage of the memory-profiler in Python.
I want to evaluate line-by-line on how much memory a function is using. However, the function is called multiple times and each ...
Kezin99
Votes: 0
Answers: 0