Windows OS에서 버퍼 캐시는 메모리 관리의 중요한 부분으로, 디스크 I/O 성능을 최적화하는 데 핵심적인 역할을 합니다. 버퍼 캐시의 주요 역할은 다음과 같습니다:

  1. 디스크 I/O 성능 향상:
    • 자주 접근하는 데이터나 파일 시스템 메타데이터를 메모리에 캐싱하여 디스크 접근을 줄입니다. 이를 통해 디스크에서 직접 데이터를 읽는 시간을 절약할 수 있습니다.
  2. 읽기 성능 개선:
    • 한 번 읽은 데이터를 메모리에 저장하여 동일한 데이터에 대한 후속 읽기 작업이 더 빠르게 수행될 수 있도록 합니다.
  3. 쓰기 성능 최적화:
    • 쓰기 작업을 먼저 메모리에 저장한 후, 일정 주기나 조건이 만족될 때 디스크에 기록합니다. 이를 통해 디스크에 대한 빈번한 쓰기 작업을 줄이고, 시스템의 전반적인 성능을 향상시킵니다.
  4. 메모리 사용의 효율성:
    • 사용하지 않는 메모리를 캐시로 활용하여 시스템의 효율성을 높입니다. 사용 중인 메모리가 부족할 경우, 캐시된 데이터를 삭제하거나 축소하여 더 중요한 작업에 메모리를 할당할 수 있습니다.
  5. 데이터 일관성 유지:
    • 데이터를 디스크에 기록하기 전에 메모리에 캐싱하여 데이터의 일관성을 유지하고, 시스템 크래시나 전원 장애 시 데이터 손실을 방지하는 메커니즘을 제공합니다.

버퍼 캐시는 이러한 기능을 통해 전체적인 시스템 성능을 향상시키고, 사용자 경험을 개선하는 중요한 역할을 합니다.


  • PowerShell을 CMD에서 실행하는 방법: CMD를 열고 PowerShell 명령어를 실행하여 시스템의 버퍼 캐시를 확인할 수 있습니다.
  • PowerShell 명령어: 버퍼 캐시 및 메모리 상태를 확인하기 위해 Get-WmiObject를 사용할 수 있습니다.

 

 

Windows OS에서 버퍼 캐시 상태를 CMD(Command Prompt)에서 확인하는 명령어는 Get-Process 및 Get-WmiObject를 활용하여 PowerShell을 통해 확인할 수 있습니다. Windows CMD 자체에서는 이러한 정보를 직접적으로 제공하지 않기 때문에 PowerShell을 사용해야 합니다.



powershell "Get-WmiObject -Class Win32_PerfFormattedData_PerfOS_Memory"
PS C:\Users\B210145_BK> powershell "Get-WmiObject -Class Win32_PerfFormattedData_PerfOS_Memory"


__GENUS                              : 2
__CLASS                              : Win32_PerfFormattedData_PerfOS_Memory
__SUPERCLASS                         : Win32_PerfFormattedData
__DYNASTY                            : CIM_StatisticalInformation
__RELPATH                            : Win32_PerfFormattedData_PerfOS_Memory=@
__PROPERTY_COUNT                     : 45
__DERIVATION                         : {Win32_PerfFormattedData, Win32_Perf, CIM_StatisticalInformation}
__SERVER                             : DESKTOP-QNNUCER
__NAMESPACE                          : root\cimv2
__PATH                               : \\DESKTOP-QNNUCER\root\cimv2:Win32_PerfFormattedData_PerfOS_Memory=@
AvailableBytes                       : 2399301632
AvailableKBytes                      : 2343068
AvailableMBytes                      : 2288

CacheBytes                           : 186159104
CacheBytes                           : 186159104
CacheBytes                           : 186159104
CacheBytes                           : 186159104
CacheBytes                           : 186159104
CacheBytes                           : 186159104

CacheBytesPeak                       : 322740224
CacheFaultsPersec                    : 0
Caption                              :
CommitLimit                          : 15726735360
CommittedBytes                       : 7436763136
DemandZeroFaultsPersec               : 11
Description                          :
FreeAndZeroPageListBytes             : 3473408
FreeSystemPageTableEntries           : 12448459
Frequency_Object                     :
Frequency_PerfTime                   :
Frequency_Sys100NS                   :
LongTermAverageStandbyCacheLifetimes : 14400
ModifiedPageListBytes                : 52383744
Name                                 :
PageFaultsPersec                     : 15
PageReadsPersec                      : 0
PagesInputPersec                     : 0
PagesOutputPersec                    : 0
PagesPersec                          : 0
PageWritesPersec                     : 0
PercentCommittedBytesInUse           : 47
PoolNonpagedAllocs                   : 0
PoolNonpagedBytes                    : 425037824
PoolPagedAllocs                      : 0
PoolPagedBytes                       : 436318208
PoolPagedResidentBytes               : 391467008
StandbyCacheCoreBytes                : 162533376
StandbyCacheNormalPriorityBytes      : 1496104960
StandbyCacheReserveBytes             : 737189888
SystemCacheResidentBytes             : 186159104
SystemCodeResidentBytes              : 8192
SystemCodeTotalBytes                 : 8192
SystemDriverResidentBytes            : 7569408
SystemDriverTotalBytes               : 34660352
Timestamp_Object                     :
Timestamp_PerfTime                   :
Timestamp_Sys100NS                   :
TransitionFaultsPersec               : 3
TransitionPagesRePurposedPersec      : 0
WriteCopiesPersec                    : 0
PSComputerName                       : DESKTOP-QNNUCER

+ Recent posts