Tagged Questions
The memory-consumption tag has no wiki summary.
5
votes
1answer
471 views
Setting memory consumption limits with Upstart
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 to ...
3
votes
4answers
824 views
How can I know how much memory Eclipse plugins use (separately)
Is there a way to know how much memory is consumed by each Eclipse plugin separately?
2
votes
4answers
62 views
How to compute or determine the memory consumption of a program written in Java using NetBeans?
How might I compute or determine the memory consumption of a program written in Java using NetBeans?
2
votes
6answers
257 views
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 to report some data about its memory usage and running time, though running time is easy ...
2
votes
2answers
1k views
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 the data to simple text file or some database so I can analyze it later.
I'm working on ...
2
votes
1answer
651 views
why does Jetty not use all allocated memory?
we develop the webapp with Grails. In productio the webapp runs on Jetty. We used JMeter to run performance-test and yourkit to analyse the memory consumtion of jetty.
We started Jetty with params ...
2
votes
2answers
668 views
Does the memory used by file_get_contents() get released when it is not assigned to a variable?
When I use file_get_contents and pass it as a parameter to another function, without assigning it to a variable, does that memory get released before the script execution finishes?
For Example:
...
1
vote
1answer
119 views
rails resque worker memory consumption
I am using a resque gem to process my background process.
I have setup three queue with one worker each.
Can any one explain how the memory gets consumed with increase and decrease of worker in the ...
1
vote
2answers
434 views
Linux process memory consumption in bytes (not Kbytes)
In Linux is there any way to check processes memory measured on bytes (using top or ps for example). Not in kbytes, but bytes.
Thanks in advance!
1
vote
2answers
101 views
.Net OutOfMemory on Server but not Desktop
Is it possible that the .Net framework behaves differently when it comes to garbage collection / memory limitations on server environments? I am running explicitly x86 compiled apps on a 64bit server ...
1
vote
6answers
445 views
How to achieve low memory consumption?
I want to know which technique antivirus programs use for scanning disk or files and maintaining low memory consumption. They don't affect the user activity either.
I am looking for an approach by ...
0
votes
1answer
72 views
Any side effect of CLLocationManager with NSTimer using such approach?
I am working on an iPhone app which needs Location Updates with intervals specified by the user.
Here is the code sample, which I am using to do this:
@implementation TestLocation
- ...
0
votes
0answers
25 views
Estimate virtual machine memory page changing rate
I've been researching for techniques on how to estimate the active memory working set of any OS, more specifically on a virtual machine. My goal is to be able to estimate how fast is the memory ...
0
votes
1answer
51 views
Resrouce consumption in WPF
I'm looking at WPF to develop the front-end of a proposed application where I work and really I'm here just looking for other peoples experiences of how memory intensive WPF applications are in ...
0
votes
3answers
9k views
SQL Server 2008 takes up a lot of memory?
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 ...
-1
votes
2answers
218 views
Memory consumption in haskell using Int64
The the problem is to find the last element. It works well Integer type. Overflow with Int type but when i try Int64 it seems that garbage collector stops working.
module Main (main) where
import ...