RAM (Random Access Memory) is a form of computer data storage. A random access device allows stored data to be accessed in very nearly the same amount of time for any storage location, so data can be accessed quickly in any random order.
56
votes
5answers
44k 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 ...
22
votes
15answers
74k 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?
9
votes
1answer
12k 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 / ...
16
votes
8answers
24k 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?
5
votes
5answers
6k 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.
7
votes
7answers
42k views
How much RAM is SQL Server actually using? [closed]
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 ...
10
votes
5answers
522 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 ...
2
votes
1answer
539 views
index on url or hashing considering RAM
I am working on a project which needs to add/update around 1 million urls daily. Some days are mostly updates and some days are mostly add and some days are mix.
So, on every query there is need to ...
2
votes
1answer
3k views
Android Available Ram
How much RAM is available for use by each app?
I read somewhere that each app could only use a max of 16 mb, but the total system memory is much higher.
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 ...
1
vote
3answers
1k views
Can a System.AccessViolationException happen because of faulty RAM?
I have a website that i've been working on for about a year now.
Recently, it's started throwing System.AccessViolationException every now and then, in my dev machine, mostly, when I was away from the ...
7
votes
3answers
6k views
get server ram with php
Is there a way to know the avaliable ram in a server (linux distro) with php (widthout using linux commands)?
edit: sorry, the objective is to be aware of the ram available in the server / virtual ...
4
votes
3answers
552 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 ...
14
votes
19answers
2k 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
4answers
551 views
If RAM isn't a concern, is reading line by line faster or reading everything into RAM and access it? - Python
If RAM isn't a concern (I have close to 200GB on the server), is reading line by line faster or reading everything into RAM and access it? Each line will be a string of around 200-500 unicode ...
8
votes
6answers
9k 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 ...
5
votes
1answer
4k views
Set Python memory limit [duplicate]
I was wondering how I would set a limit of 512mb memory (ram) for my Python script?
Any Ideas?
Thanks in advance,
James
4
votes
2answers
711 views
Is there a way to force mongodb to store certain index in ram?
I have a collection with a relatively big index (but less than ram available) and looking at performance of find on this collection and amount of free ram in my system given by htop it's seems that ...
2
votes
2answers
269 views
Ruby/Mechanize probleme of RAM. Erasing instensiation of 'agent.get' method?
I'got a little probleme of leak memory on a Mechanize Ruby script.
I "while loop" some multiple webpages access forever and memory increase a lot on each loop. That's create a "failed to allocate ...
0
votes
2answers
4k views
Android. How get total RAM size of device?
How get full RAM size of device?
memoryInfo.getTotalPss() returns 0.
In ActivityManager.MemoryInfo() not function for get total RAM size..
6
votes
2answers
6k 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
3k views
Configure Visual Studio to use more ram
I read a blog post at one time on how to increase the amount of RAM that Visual Studio will use. I am getting a "Not enough memory free" error message when trying to copy a small line of text in the ...
3
votes
1answer
2k 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
3answers
939 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, ...
2
votes
2answers
736 views
Configure .NET CLR RAM usage
Is there a method of configuring the .NET CLR RAM usage on my machine?
Suppose I have 64GB of RAM and I want to limit it to 4GB? It this possible?
Edit - The root of the problem is that I have a ...
1
vote
1answer
475 views
Can sufficient increase of available RAM eliminate usage of tempdb when querying read-only database in SQL Server?
When I look at resource usage, SQL Server does a lot of writes into tempdb for some big queries.
I don't use temp tables or table variables or any writes, I execute only select statements of ...
3
votes
1answer
601 views
How to check the amount of RAM in R
I want to make a function that imports data in different numbers of batches depending on how much RAM is available on someones system. But how can I find the amount of available RAM in R? I can use ...
3
votes
1answer
2k 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 ...
2
votes
5answers
306 views
C++: Unitialized variables garbage
int myInt;
cout << myInt; // Garbage like 429948, etc
If I output and/or work with unitialized variables in C++, what are their assumed values?
Actual values in the memory from the "last ...
2
votes
5answers
2k views
Temp file that exists only in RAM?
I'm trying to write an encrpytion using the OTP method. In keeping with the security theories I need the plain text documents to be stored only in memory and never ever written to a physical drive. ...
1
vote
0answers
174 views
Why does Apache+mod_php on Windows require low RAM usage?
I have Apache + mod_php installed on Windows but I can't relate it to any of those used on Linux.
It only has this:
# ThreadsPerChild: constant number of worker threads in the server process
# ...
1
vote
1answer
521 views
Limiting RAM usage for program executed through shell script
I need to limit the memory(RAM) usage of a program to just 100mb.
I am executing a batch of them using a shell script and wanted to know how to do that.
I am compiling from source of my class and then ...
0
votes
3answers
269 views
c# save a picture file to ram
I am developing a program for image processing, and I need to save some pictures from a video and do some processing on them.
When dealing with 1 picture it doesn't really take time,
But when I'm ...
0
votes
3answers
324 views
C++ new / new[], how is it allocating memory?
I would like to now how those instructions are allocating memory.
For example what if i got code:
x = new int[5];
y = new int[5];
If those are allocated how it actually looks like in RAM?
Is ...
