Log-structured file system: Difference between revisions

Content deleted Content added
cleanup categories
m Structure
Line 33:
== Disadvantages ==
 
* The design rationale for log-structured file systems assumes that most reads will be optimized away by ever-enlarging memory caches. This assumption is not true for all workloads: on magnetic media (where seeks are relatively expensive) the log structure may actually make reads much slower, since it [[fragmentation (computer)#External_fragmentation|fragments]] files that conventional file systems normally keep contiguous with in-place writes. (However, these mechanical seek limitations do not apply to flash memory.)
 
* These mechanical seek limitations obviously do not apply to flash memory.
 
== References ==