memory-consumption Questions

3

Solved

In book Algorithms fourth edition by Robert Sedgewick on page 200, it says "for example, if you have 1GB of memory on your computer (1 billion bytes), you cannot fit more than about 32 million int ...
Enjambement asked 22/2, 2016 at 10:9

8

Solved

Is there any ready-to-use solution to log the memory consumption from the start of the system? I'd like to log the data to simple text file or some database so I can analyze it later. I'm working ...
Barrage asked 8/12, 2009 at 16:41

2

I did some evaluations on CouchDB recently. I found that memory consumption is pretty high for view construction (map & reduce) as well as importing a larger JSON document into CouchDB. I evalu...
Maccarone asked 19/10, 2017 at 3:53

6

Solved

In the following piece of code we make a call listType.getDescription() twice: for (ListType listType: this.listTypeManager.getSelectableListTypes()) { if (listType.getDescription() != null) { ...
Calgary asked 18/10, 2013 at 9:7

2

Solved

I'm limited by 1GB memory on my server hosting. When I want to compile some big program like git-annex, Cabal eats lot of memory. Is there a way to limit cabal or gcl using some option to limit mem...
Mattoid asked 5/11, 2015 at 13:55

1

Solved

Is there a way to do a reshape on numpy arrays but inplace. My problem is that my array is very big so any unnecessary copies strain the memory. My current approach is like this: train_x = train_x....
Spoony asked 4/10, 2017 at 21:33

4

Can anyone give a detailed analysis of memory consumption of namenode? Or is there some reference material ? Can not find material in the network.Thank you!
Desai asked 9/11, 2012 at 9:3

6

Solved

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, when I open 3-4 tabs and surfing 10-15 mins, mem...
Jalisajalisco asked 21/10, 2015 at 13:37

2

Solved

I've recently become quite fond of Upstart. Previously I've been using God, Monit and Bluepill but I don't really like these solutions so I'm giving Upstart a try. I've been using the Foreman gem ...
Disparity asked 7/6, 2011 at 14:35

0

How can you define the memory usage metric provided by google cadvisor in docker? Is it dynamic stack size, heap requirement, cache misses, code size, swap memory or RAM memory? as well for cpu c...
Slobber asked 20/10, 2015 at 0:52

3

Solved

Out of interest: Recently, I encountered a situation in one of my Java projects where I could store some data either in a two-dimensional array or make a dedicated class for it whose instances I wo...
Deluca asked 8/10, 2015 at 0:19

1

Solved

I've wrote the following function to find a given item "x" in a given list "lst" and return its index if it's found, otherwise it would return an error: exception Failure of string let rec func x...
Fahrenheit asked 7/7, 2015 at 21:48

2

Solved

I have written a small program that produces arrays, which runs quite long (almost forever ;-)): var results = []; var i = 1; while (true) { console.log(i++); results.push([]); } When, instea...
Stannfield asked 23/4, 2015 at 6:1

1

I'm working on the some kind of a system service (actually it's just a log parser) written in Python. This program should work continuously for a long time (hopefully I mean days and weeks without ...
Palette asked 29/4, 2014 at 16:12

4

Solved

I'm looking for ways to reduce memory consumption by SQLite3 in my application. At each execution it creates a table with the following schema: (main TEXT NOT NULL PRIMARY KEY UNIQUE, count INTEG...
Chaeta asked 6/3, 2013 at 18:41

2

Solved

I am new to Go and trying to figure out how it manages memory consumption. I have trouble with memory in one of my test projects. I don't understand why Go uses more and more memory (never freeing...
Apocopate asked 29/1, 2013 at 12:5

3

Solved

I'm using reflection to map out objects. These objects are in managed code but I have no visibility into their source code, underlying structure, etc. other than through reflection. The overarching...
Recreate asked 14/1, 2013 at 16:39

3

Solved

I have this simple Java Code which creates a single JFrame instance and displays it. This link contains the screenshot of memory consumption graph taken by jconsole What worries me is that java....
Erelia asked 3/10, 2012 at 14:52

1

Solved

I would like to know exactly the real space allocated in memory for an object. I try to explain with some example: using a 64 bit JVM, pointer size should be 8 bytes, so: Object singletest = new...
Lachrymal asked 30/4, 2012 at 15:59

4

Solved

I am conducting stress tests on my database, which is hosted on SQL Server 2008 64-bit running on a 64-bit machine with 10 GB of RAM. I have 400 threads. Each thread queries the database every sec...
Stimson asked 13/5, 2009 at 7:38

5

I'm currently using VisualVM, but the problem I'm having is that I can't save the graphs it generates. I need to report some data about its memory usage and running time, though running time is eas...
Celebrate asked 21/8, 2010 at 3:22

4

Solved

Is there a way to know how much memory is consumed by each Eclipse plugin separately?
Cyclostome asked 12/6, 2009 at 9:36
1

© 2022 - 2025 — McMap. All rights reserved.