Questions tagged [ram]

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.

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.

The two main forms of modern RAM are static RAM (SRAM) and dynamic RAM (DRAM). In static RAM, a bit of data is stored using the state of a flip-flop. This form of RAM is more expensive to produce, but is generally faster and requires less power than DRAM and, in modern computers, is often used as cache memory for the CPU.

Both static and dynamic RAM are considered volatile, as their state is lost or reset when power is removed from the system. By contrast, Read-only memory (ROM) stores data by permanently enabling or disabling selected transistors, such that the memory cannot be altered.

2059 questions
0
votes
0 answers

Memory is not full released after deleting all QPushButtons in QTApp

I am creating a program containing QPushButtons. The problem is when i add QPushButtons memory(RAM) is increasing but when i delete all added buttons memory is not fully releasing. void TempTest ::addSLOT() { li= new QList; …
0
votes
1 answer

Alternative to saving state of activity : ram check [Android]

So theoretically, if I had a webview that loaded multiple pages in one session AND in one activity, if I was unable to save the state of that activity like I normally would via Bundle onSavedInstanceState, is there a way to prompt the app to check…
kthieu
  • 177
  • 2
  • 16
0
votes
1 answer

Service based app consuming high RAM on android

My app is based on InputMethodService , it is a custom keyboard app.. We are showing different tabs, images, gifs,google ads, news etc from server in this app in a service. My app is consuming high RAM. This app is making device slow... I am already…
Nibha Jain
  • 6,032
  • 10
  • 40
  • 63
0
votes
1 answer

Is my array the cause of rapid cpu & memory build up?

My MCVC is compiling but is not functioning as intended. The goal is a genetic algorithm that performs the basics i.e. crossover,mutation,evolution. In the code I have provided should print out the good job statements but thats not the case. I am a…
0
votes
0 answers

How to start docker container in memory?

Is it possible to start container in memory? If yes how I could do it? I want to start container with DB inside (Postgresql) for testing purpose. P.S. I use Ubuntu 16.04
mystdeim
  • 3,884
  • 7
  • 40
  • 68
0
votes
1 answer

Why RAM only being used by process instead of SWAP , how can we troubleshoot this issue?

Tomcat processes are consuming more memory in the linux server . When we check RAM was almost used 99% and SWAP is not used by 20% also. Why Tomcat process is not using SWAP and its using more RAM ?
user3442562
  • 367
  • 5
  • 16
0
votes
1 answer

How does Computers Handle Memory Addressing when the Max-memory is not on Power of 2?

I know how Basic Memory Addressing works and why it's always recommended we use a amount of memory that is on a Power of 2, ( Explanation for future people ) because the bits used by the CPU to address the memory only have 2 values. So 2 bits can…
Caio César
  • 191
  • 1
  • 2
  • 12
0
votes
3 answers

Do variables declared inside callback functions remain in memory or are they destroyed upon end of callback execution?

I have this code snippet; It basically connects to mongo database and goes through documents. On each iteration it searches for messages array of objects. It creates variable of messages, and then loops through it. Does declared variable (var msg)…
Kunok
  • 5,543
  • 8
  • 38
  • 72
0
votes
1 answer

Cant display Upper and Lower Memory

The OS Dosent display the upper and lower memory for some reason. As you can see here in Detecting Memory Wiki : http://wiki.osdev.org/Detecting_Memory_(x86)#Memory_Map_Via_GRUB , it says Refer to mbd->mem_lower for conventional memory (e.g.…
amanuel2
  • 4,268
  • 2
  • 29
  • 61
0
votes
1 answer

Why does my ReadProcessMemory() not work? (C#)

I have the following Code in C#: using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Linq; using System.Collections.Generic; using System.Text; using System.IO; namespace ProcessMemoryReaderLib { ///…
battler11
  • 11
  • 7
0
votes
1 answer

android - what is the difference between android ram and pc's ram

Yesterday I tried to open a *.txt file larger than 3 MB with android. Why can't android open it? Previously I had tried to open that file with Windows with the same RAM capacity and Processor speed. What exactly is the difference between android and…
Acip
  • 21
  • 1
  • 1
  • 1
0
votes
3 answers

Infer 2d block RAM in VHDL for Xilinx vivado

I am trying to infer a 2d block ram in VHDL. But the elaborated circuit turns out to be a circuit of registers and MUXs. The main file for the code pertaining to the RAM is: library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use…
0
votes
0 answers

Python: partially clear RAM to keep script running constantly fast?

my basic code in Python iterates through 2,000,000 combinations of parameters which are passed to a third-party fortran exe. Fortran modelles the desired output and creates a .csv file of size 54KB each. At the beginning, I get like 100 outputs per…
offeltoffel
  • 2,431
  • 1
  • 16
  • 29
0
votes
4 answers

How to replace `4-7` into `4,5,6,7` in Bash

Goal I have a long string s which represents series of numbers separated by commas and dashes (see below). When several numbers follow each other, the two extreme numbers are written and are separated by a dash. For example, the series 4,5,6,7 is…
Remi.b
  • 15,061
  • 23
  • 64
  • 143
0
votes
1 answer

android collapses so we restart everyday

Guys I have an application that works on the tablet.That is a smart house application.I root the tablet because I want to forbid the customers to use anything else but application on the tablet.Application is always visible and working non stop on…
Ali Yılmaz
  • 73
  • 2
  • 10
1 2 3
99
100