Tagged Questions
The ram tag has no wiki summary.
23
votes
7answers
21k views
How to get current CPU and RAM usage in Python?
What's your preferred way of getting current system status (current CPU, RAM, free disk space, etc.) in Python? Bonus points for *nix and Windows platforms.
There seems to be a few possible ways of ...
14
votes
19answers
1k views
Will multi threading provide any performance boost?
I am new to programming in general so please keep that in mind when you answer my question.
I have a program that takes a large 3D array (1 billion elements) and sums up elements along the various ...
13
votes
10answers
730 views
Why are 8 and 256 such important numbers in computer sciences?
I don't know very well about RAM and HDD architecture, or how electronics deals with chunks of memory, but this always triggered my curiosity:
Why did we choose to stop at 8 bits for the smallest ...
8
votes
5answers
154 views
Store/retrieve a data structure
I have implemented a suffix tree in Python to make full-text-searchs, and it's working really well. But there's a problem: the indexed text can be very big, so we won't be able to have the whole ...
8
votes
1answer
447 views
How to see Linux' view of the RAM in order to determinate the fragmentation
The only program relevant I know of is pmap, but this only prints the memory of one process.
I would like to see how the physical memory is occupied and by which processes/library, including the ...
8
votes
5answers
831 views
Reserve RAM in C
I need ideas on how to write a C program that reserve a specified amount of MB RAM until a key [ex. the any key] is pressed on a Linux 2.6 32 bit system.
*
/.eat_ram.out 200
# If free -m is execute ...
8
votes
15answers
35k views
How to do I check CPU and Memory Usage in Java?
I need to check CPU and memory usage for the server in java, anyone know how it could be done?
7
votes
5answers
288 views
Programming in the era of SSD
I am wondering how the oncoming SSD technology affects (mosty system) programming. Tons of questions arise, but here are some most obvious ones:
Can the speed of disk access be considered anywhere ...
7
votes
4answers
756 views
How to simulate different CPU frequency and limit RAM
Hi
I have to build a simulator with C#. This simulator should be able to run a second thread with configureable CPU speed and limited RAM size, e.g. 144MHz and 50 MB.
Of course I know that a simulator ...
7
votes
6answers
3k views
Need to load the whole postgreSQL database into the RAM
How do I put my whole PostgreSql database into the RAM for a faster access?? I have 8GB memory and I want to dedicate 2 GB for the DB. I have read about the shared buffers settings but it just caches ...
6
votes
1answer
68 views
Measure size of libraries in Linux
I'm developing S/W for some device which uses Linux O.S.
So, the size of libraries (RAM/ROM) which I use is very important.
How can I easily calculate RAM / ROM required by my software? (including ...
6
votes
5answers
539 views
Eclipse slow at building Android resources
I'm using Eclipse to develop Android apps.
I'm using the latest SDK and Eclipse 3.6, my computer is macbook air with 4GB of ram.
Everytime I change a resource file ( an XML layout for example ), it ...
6
votes
8answers
376 views
Can RAM handle different data type sizes?
int, char and bool usually have different sizes. Where int>char>bool, I suppose.
But does the RAM even support this?
How is it built up?
Can it take advantage of bool being only 1 byte and store it ...
6
votes
4answers
329 views
How do I know if my PHP application is using too much memory?
I'm working on a PHP web application that let's users network with each other, book events, message etc... I launched it a few months ago and at the moment, there's only about 100 users.
I set up ...
6
votes
5answers
659 views
How do I limit RAM to test low memory situations?
I'm trying to reproduce a bug that seems to appear when a user is using up a bunch of RAM. What's the best way to either limit the available RAM the computer can use, or fill most of it up? I'd ...
6
votes
6answers
781 views
Is it a solution to upgrade RAM memory from 2GB to 4GB?
My PC has 2GB RAM memory.
When I form a 3D mesh object having an array of 70.000 items in C# 2008 Express Edition, I get the error message "Stack Overflow exception handled...". If I upgrade RAM ...
6
votes
7answers
11k views
How to get current CPU and RAM usage in C++?
is it possible, in C++, to get the current RAM and CPU usage? Is there a platform-indepentent function call?
Thank you.
6
votes
6answers
5k views
How do you determine the amount of Linux system RAM in C++?
I just wrote the following C++ function to programatically determine how much RAM a system has installed. It works, but it seems to me that there should be a simpler way to do this. Can someone tell ...
6
votes
5answers
2k views
What is StringBuilder's RAM consumption like?
We have a few operations where we are doing a large number of large string concatenations, and have recently encountered an out of memory exception. Unfortunately, debugging the code is not an ...
5
votes
2answers
226 views
Does every server in a MongoDB replica set need to have exactly the same RAM?
Can I set up a replica set in MongoDB 1.8 using servers with different amounts of RAM?
server1: 5gb
server2: 2gb
server3: 4gb
If yes, what are the pros and cons?
5
votes
1answer
3k views
How to get CPU usage and RAM usage without exec?
How does VBulletin get the system information without the use of exec ?
is there any other information i can get about the server without exec ?
bandwidth used ? system type ? CPU speed / usage / ...
5
votes
7answers
1k views
fill memory with random data
Is there a way to fill the free RAM on a linux machine with random data?
The reason I'm asking this: I'm working in a group where we do numerical programming in Fortran. Sometimes, people mess up ...
5
votes
7answers
479 views
I have some RAM to burn - any suggestions? [closed]
I needed to run memcached locally for dev on my Mac G5 so I have 8 Gigs now. I also use a RAM disk for running scripts on large files.
Have you used extra ram for any interesting tasks?
4
votes
1answer
207 views
Get total RAM size that use Application in Android
I want to gather some statistics from my Android phone.
When I start my application I want to know following:
How much RAM does application use.
How much free RAM does my phone have.
How much total ...
4
votes
3answers
205 views
Why isnt RAM as fast as registers/cache memory? [closed]
Please excuse if the question is very basic.
Why do we need to cache in Cache Memory? Why cant RAM Memory be made as fast as register or Cache Memory or Cache be as large as RAM Memory (4GB) so that ...
4
votes
1answer
745 views
Reducing Redmine's memory usage - Low Hanging Fruit
I am running a Redmine instance with Passenger and Nginx. With only a handful of issues in the database, Redmine consumes over 80mb of RAM.
Can anyone share tips for reducing Redmine's memory usage. ...
4
votes
1answer
6k views
Android memory types (RAM v Internal Memory)
On a separate thread I demonstrated my ignorance of memory types by asking about the best way to copy a file into "internal memory" and was advised that this was not a good idea and that it would be ...
4
votes
3answers
1k views
How to keep RAM usage below 90MB? (Specially scaling images)
I'm developing an app for WP7 (VS2010 Express for Windows Phone RTM and WP Emulator), but now im facing a big problem related to memory usage.
The app itself has like 12 views, and some of them are ...
4
votes
3answers
369 views
Looking for a Perl module to store a Hash structure in shared RAM
I'd like to store a data structure persistently in RAM and have it accessible from pre-forked
web server processes in Perl.
Ideally I would like it to behave like memcached but without the need for ...
4
votes
2answers
2k views
Load a MySQL innodb database into memory
I have a MySQL innodb database at 1.9GB, showed by following command.
SELECT table_schema "Data Base Name"
, sum( data_length + index_length ) / 1 048 576
as "Data Base Size in MB"
...
4
votes
2answers
464 views
How do I structure the memory map in an N64 emulator?
According to Wikipedia, the N64 only has 4 MB of RDRAM (8 MB with the Expansion Pack), and the other quantities are similarly small (4 KB or so of L1 cache). However, technical documents I have found ...
3
votes
2answers
79 views
How can I create a RAM disk programmatically?
I am not looking for a code that invokes a command line utility, which does the trick. I am actually interested to know the API used to create a RAM disk.
Thanks.
EDIT
Motivation: I have a third ...
3
votes
1answer
37 views
How much memory can the general NSPasteboard occupy?
The general NSPasteboard stores stuff that the user has copied. For example, like 100 images and 1000 words. Is there a limit to the size of the general NSPasteboard such that the user can copy say.. ...
3
votes
1answer
149 views
How can I show an image in webBrowser control directly from memory?
How can I show an image in webBrowser control directly from memory instead of hard disk?
When I use RAM Disk software to create a virtual drive, it is possible to address an image source to load it ...
3
votes
1answer
103 views
Read data in executable on run
G'Day!
I have an executable (Unix or Windows - it should be cross-compiling). If one opens this executable by any editor and write some stuff to the end - the application would still run perfect.
On ...
3
votes
1answer
147 views
Excluding a device from android app download based on RAM requirements?
Can I exclude a device from downloading my app from the android market by determining how much RAM the device has?
3
votes
5answers
572 views
Java/Tomcat heap size question
I am not a Java dev, but an app landed on my desk. It's a web-service server-side app that runs in a Tomcat container. The users hit it up from a client application.
The users constantly complain ...
3
votes
2answers
976 views
Redis: Database Size to Memory Ratio?
What is Redis's database size to memory ratio?
For instance, if I have an 80MB database, how much RAM will Redis use (when used with a normal web app)?
3
votes
1answer
524 views
PHP server statistics script?
I'm not really sure where to put this question (it's not really webapps or superuser) but I'm sure something similar already exists. I'm looking for a php script that gives me detailed info about ...
3
votes
2answers
2k views
How do I execute a function from RAM on a Cortex-M3 (STM32)?
I'm trying to execute a function from RAM on a Cortex-M3 processor (STM32). The function erases the and rewrites the internal flash, so i definitely needs to be in RAM but how do I do that?
What I ...
3
votes
3answers
582 views
How does PHP handle variables in RAM?
I am curious how PHP handles variables in memory? If I have 100 constants or variables set that hold values related to my application and not on a per user basis, like site name, version number, ...
3
votes
5answers
3k views
Detect CPU Speed/Memory/Internet Speed using Java?
Is it possible within Java to identify the total CPU speed available as well as the total system memory? Network connection speed to the web would also be awesome.
3
votes
7answers
16k views
How much RAM is SQL Server actually using?
I am debugging one of my apps and noticed that the RAM on my SQL Server 2005 x64 box (running on a Windows 2003 R2 x64 ) is pegged and even going into the paging file.
I understand that SQL Server ...
2
votes
3answers
101 views
How to effectively store a large set of permutations?
Let's say we have a list of elements:
[{dog,1},{dog,2},{cat,1},{cat,2},{bird,1},{bird,2},...]
I would like to store all possible permutations of this list in the RAM.
Since the list can be pretty ...
2
votes
1answer
105 views
Does java usually take up all this memory in development?
how much RAM do I need to develop java comfortably?
Sorry if my question seems stupid, but I have been developing java for a while on my laptop... it has 3GB ram with 2 GB Swap... I work on gnu/linux ...
2
votes
1answer
59 views
Storing a file in RAM with bash - possible?
I'm going to encrypt my harddrive using LUKS with Arch Linux; normally you use either a keyfile or a passphrase to unlock encrypted volumes, however I want to require both.
# If keyfile exists, ...
2
votes
2answers
80 views
PHP Memory Limit / RAM questions
I have a question regarding PHP and it's memory limit. I have an index.php page, that requires memory_limit to be set to about 50MB or more to run.
So does this mean anytime somebody visits that page ...
2
votes
2answers
56 views
Automating Resetting MongoDb Service
In light of Mongo's caching memory issue (I just had it max out after a week at 2 gigs and stop responding to requests), I've been manually restarting the Mongod.exe service to release all unused ...
2
votes
1answer
151 views
How do I allocate more memory to MATLAB 2011a in OS X 10.6.8?
I do a lot of analysis in MATLAB, and while the machine on which I run it has 16 GB of memory, MATLAB almost never uses more than 1GB of Real Memory. Even if I disable the virtual memory, it seems ...
2
votes
3answers
66 views
xml tool design problem
I have been asked this question at an interview. Ofcourse there are many approaches to the solution but just wanted to know if there is some really best approach that stands out. There is a huge xml ...