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.

2294 questions
0
votes
1 answer

BigBlueButton Crashing after upgrading VM RAM

Recently I Installed BigBlueButton with 4core CPU and 4GB Ram. After one month I upgrade RAM to 8GB there was no problem After two months I needed to Upgrade it so I Upgrade it to 12GB RAM but it's crashed and it didn't work so I recovered…
0
votes
1 answer

Python3 Multiprocessing os.fork operates on the same resource?

import os a=[] pid=os.fork() if(pid!=0): a.append(1) print("Original: ", end='') print(a,id(a)) else: a.append(2) print("Child: ", end='') print(a,id(a)) # Result: # Original: [1] 139725666412296 # Child: [2]…
o_yeah
  • 688
  • 7
  • 17
0
votes
0 answers

How to run Angular build on limited resources and old computer

I am not an expert! I am building Angular 9 web application on my work laptop. Which is working fine! However due to unavoidable reasons, I am not able to collect my work laptop for few days. I have a old computer (AMD Athlon) with 1 GB RAM at home…
IT guy
  • 45
  • 5
0
votes
1 answer

the memory of 32 bit CPU

I have a question. For the 32 bit CPU, the maximal memory address it can have is 2^32 bit = 4GB. So does it mean 32 bit CPU computer only needs a 4GB RAM? If it is provided a 8GB RAM, it can only use up to 4GB RAM. I try to answer the 1st question…
Yuanfei Bi
  • 51
  • 7
0
votes
1 answer

Simulating VHDL Modelsim Dual-port RAM with 2 Clocks

I need help with the testbench for a Dualport RAM with 2 clocks where address A (write) is synchronized with CLK A and address B (read) with CLK B. Here is the code in ModelSim: library ieee; use ieee.std_logic_1164.all; use…
User839303
  • 19
  • 2
0
votes
0 answers

Is there any way to cache flyweight pattern to reduce memory usage?

Class A: private String name; private double[] data; private double[] data1; private double[] data2; private double[] data3; private double[] data4; public A() (String name, double[] data, double[] data1... double[] data4) { this.name = name; …
0
votes
0 answers

Reducing RAM usage in Java

public class ReportDatabase { private static final Map reportTypes; private static final String[] reportTypeNameVersion = { "Payroll Tax Report 1", "Capital Gains Tax Report 1", "Overall…
0
votes
0 answers

How to reduce RAM usage in java?

ReportDatabase class public class ReportDatabase { private static final Map reportTypes; private static final String[] reportTypeNameVersion = { "Payroll Tax Report 1", "Capital Gains Tax Report 1", …
0
votes
2 answers

Google VM RAM for Minecraft Server

I've been tasking with creating a Minecraft server for about 500 players. I've never create a Minecraft server this large before and I think the best way to go about it is (how I've done all my other servers) with Google Cloud. Google Cloud has the…
Evan
  • 1,892
  • 2
  • 19
  • 40
0
votes
1 answer

Can't access the extra RAM of GoogleColab anymore

I tried crashing the session in order to get more RAM like I used, but it won't work l=[] while 1: l.append('nothing') Has it been changed? What happened? Is there another way? Please help!
Sara Djaroud
  • 115
  • 1
  • 1
  • 5
0
votes
0 answers

monitor ram bandwidth real time on android

recently, I'm trying to find out a way to monitor the ram bandwidth real time on android smartphone, I've tried to use top command, but it only shows how many percentage of ram have been occupied, it doesn't show any bandwidth information, do you…
Ali
  • 1
  • 1
0
votes
1 answer

OpenCL unexpected high RAM usage

There is a program with a certain amount of kernel (about 30), which operate on common data (buffers - cl_mem) and are called in a certain sequence in a loop a large number of times (for example, 100000). The amount of data transferred to the video…
0
votes
0 answers

How to test CPU and RAM usage of a Python program?

I have a python code that I will run on a ubuntu machine.It will run in the device for 24/7, 365 Days. To run the code I will use this command in the terminal: python3 run.py How to calculate the CPU and Memory usage of that file when run on the…
null_override
  • 467
  • 3
  • 10
  • 30
0
votes
1 answer

Why does Apache Flink need much RAM

I'm considering to use Apache Flink to process some stream data in my project. However, I was told that Flink may need much RAM by a friend. Also, I've found something which told me the same thing:…
Yves
  • 11,597
  • 17
  • 83
  • 180
0
votes
1 answer

VxWorks: Why bootline can't be changed?

I am trying to revise the bootline of VxWorks by running the “bootChange” command in shell. I can successfully see the change right after i run this command by checking “version” command, but when i really try rebooting the VxWork, the changes…
youye
  • 11
  • 2