Top "Memory-consumption" questions

the amount of memory allocated and/or used by a particular algorithm or application

How to log the memory consumption on Linux?

Is there any ready-to-use solution to log the memory consumption from the start of the system? I'd like to log …

linux logging memory-consumption
The memory consumption of hadoop's namenode?

Can anyone give a detailed analysis of memory consumption of namenode? Or is there some reference material ? Can not find …

hadoop memory-consumption
Go memory consumption management

I am new to Go and trying to figure out how it manages memory consumption. I have trouble with memory …

memory-management go memory-consumption
How to reduce SQLite memory consumption?

I'm looking for ways to reduce memory consumption by SQLite3 in my application. At each execution it creates a table …

c performance sqlite memory-consumption
DataTable memory huge consumption

I´m loading csv data from files into a datatable for processing. The problem is, that I want to process …

c# memory csv datatable memory-consumption
Best way to measure Memory Usage of a Java Program?

I'm currently using VisualVM, but the problem I'm having is that I can't save the graphs it generates. I need …

java profiler visualvm measurement memory-consumption
IE 11 (Update Version: 11.0.24) Memory Consumption Issue

After installing windows update, my IE version updated to 11.0.9600.18059 (Update Version: 11.0.24), and I found that its consuming too much memory, …

internet-explorer memory-leaks memory-consumption
Python memory consumption on Linux: physical and virtual memory are growing while the heap size remains the same

I'm working on the some kind of a system service (actually it's just a log parser) written in Python. This …

python linux memory-consumption
Finding an item in a list and returning its index - OCaml

I've wrote the following function to find a given item "x" in a given list "lst" and return its index …

list find ocaml ml memory-consumption
Calling getters on an object vs. storing it as a local variable (memory footprint, performance)

In the following piece of code we make a call listType.getDescription() twice: for (ListType listType: this.listTypeManager.getSelectableListTypes()) { if (…

java performance readability memory-consumption