前提条件–不同类型的RAM
1.静态随机存取存储器(SRAM):
数据存储在晶体管中,需要恒定的功率流。由于具有持续的功率,因此无需刷新SRAM即可记住要存储的数据。 SRAM被称为静态的,因为没有任何更改或动作,即无需刷新即可保持数据完整。它用于高速缓存中。
优势:低功耗和更快的访问速度。
缺点:内存容量少,制造成本高。
2.动态随机存取存储器(DRAM):
数据存储在电容器中。将数据存储在DRAM中的电容器会逐渐释放能量,没有能量意味着数据已丢失。因此,需要定期刷新电源才能函数。 DRAM被称为动态的,称为恒定变化或动作,即需要刷新以保持数据完整。它用于实现主存储器。
优势:低成本制造和更大的存储容量。
缺点:访问速度慢,功耗高。
SRAM和DRAM之间的区别:
Sr.No. | SRAM | DRAM |
---|---|---|
1. | Transistors are used to store information in SRAM. | Capacitors are used to store data in DRAM. |
2. | Capacitors are not used hence no refreshing is required. | To store information for a longer time, contents of the capacitor needs to be refreshed periodically. |
3. | SRAM is faster as compared to DRAM. | DRAM provides slow access speeds. |
4. | These are expensive. | These are cheaper. |
5. | SRAMs are low density devices. | DRAMs are high density devices. |
6. | These are used in cache memories. | These are used in main memories. |