Basic Flash Operations
전공 이론 공부/기타2022. 1. 17. 17:45Basic Flash Operations

READ (a page) - 사용자는 플래시 칩 내의 어떤 페이지든 접근할 수 있다 - 장치 위치에 상관없이 대체적으로 빠르다 (10μs정도) - Being able to access any location uniformly quickly means the device is a random access device - 그렇다. 플래시는 랜덤 액세스 장치이다 ERASE (a block) - page를 쓰기 전에, 전체 블럭을 지워야한다 - Erase, importantly, destroys the contents of the block (by setting each bit to the value 1) - therefore, you must be sure that any data you care about ..

SSD에 대해 (NAND-based flash)
전공 이론 공부/기타2022. 1. 17. 16:57SSD에 대해 (NAND-based flash)

- SSD는 HDD와 다르게 기계적인 움직임이 없으며(disk arm을 움직여 데이터를 읽는 등) 단순히 트랜지스터들로 이루어져 있다. - random-access memory(DRAM)과는 다르게 SSD는 전원이 꺼져도 정보를 가지고 있는다. - flash메모리( 특히 NAND-based flash)는 1980년대에 Fujio Masuoka에 의해 만들어졌다. 특징점 - To write to a given chunk of it(flash page), you first have to erase a bigger chunk(flash block). - writing too often to a page will cause it to wear out flash기반 SSD 생각해볼 점들 - erase의 비용을 싸..

image