इस समस्या से निपटने के लिए सबसे अच्छा तरीका SetSystemFileCacheSize
एपीआई का उपयोग करना है क्योंकि एमएस केबी 976618 निर्देश देने के लिए उपयोग किया जाता है ।
समय-समय पर कैश को साफ न करें
SetSystemFileCacheSize
समय-समय पर कैश को साफ़ करने के बजाय फ़ंक्शन का उपयोग करने से प्रदर्शन और स्थिरता में सुधार होता है। कैश को समय-समय पर साफ़ करने से बहुत अधिक मेटाफ़िल और अन्य जानकारी मेमोरी से शुद्ध हो जाएगी, और विंडोज को HDD से रैम में आवश्यक जानकारी को फिर से पढ़ना होगा। जब भी आप कैश को साफ़ करते हैं, तो यह कुछ सेकंड के लिए प्रदर्शन में अचानक और गंभीर गिरावट पैदा करता है, इसके बाद अच्छा प्रदर्शन जो धीरे-धीरे कम हो जाता है क्योंकि मेमोरी मेटाफ़ाइल डेटा से भर जाती है।
SetSystemFileCacheSize
फ़ंक्शन का उपयोग करना न्यूनतम और अधिकतम सेट करता है जिसके परिणामस्वरूप विंडोज को अतिरिक्त पुराने मेटाफ़ाइल डेटा को स्टैंडबाय मेमोरी के रूप में चिह्नित किया जाएगा जो सामान्य कैशिंग फ़ंक्शन वर्तमान संसाधन मांगों और सामान्य कैश प्राथमिकताओं के अनुसार उपयोग या त्याग कर सकते हैं। यह आपके द्वारा सेट की गई सक्रिय मेमोरी की तुलना में अधिक मेटाफ़ाइल डेटा की भी अनुमति देता है, मेमोरी में स्टैंडबाय डेटा के रूप में होने के लिए यदि विंडोज़ किसी अन्य चीज़ के लिए मेमोरी का उपयोग नहीं कर रहा है, जबकि उपलब्ध मेमोरी को बहुत बनाए रखता है। यह प्रणाली की प्रदर्शन विशेषताओं को हर समय अच्छा रखने के लिए आदर्श स्थिति है।
थर्ड पार्टी प्रोग्राम MS द्वारा असमर्थित हैं
यदि आप मेरे जैसे हैं और अपने उत्पादन सर्वर पर किसी अज्ञात तृतीय पक्ष से बाइनरी नहीं चलाना चाहते हैं, तो आप एक आधिकारिक एमएस उपकरण या कुछ कोड चाहते हैं जो आप उन सर्वरों पर चलने से पहले निरीक्षण कर सकते हैं। 2008 R2 के लिए DynCache टूल एक समर्थन मामले के लिए भुगतान किए बिना एम $ से प्राप्त करना व्यावहारिक रूप से असंभव है और काफी स्पष्ट रूप से, 2008 के लिए कोड के आधार पर, यह कार्य के लिए अत्यधिक फूला हुआ लगता है क्योंकि विंडोज में पहले से ही निर्मित डायनामिक आकार के लिए आवश्यक तर्क है कैश - यह सिर्फ आपके सिस्टम के लिए एक उपयुक्त अधिकतम पता करने की जरूरत है।
उपरोक्त सभी का समाधान
मैंने Powershell स्क्रिप्ट लिखी है जो 64 बिट मशीनों पर काम करती है। आपको इसे उन्नत विशेषाधिकार वाले व्यवस्थापक के रूप में चलाने की आवश्यकता है। आपको इसे चलाने में सक्षम होना चाहिए, जैसा कि किसी भी x64 विंडोज़ विस्टा / सर्वर 2008 पर है और 10 / सर्वर 2012 आर 2 को किसी भी मात्रा में रैम के साथ शामिल करना चाहिए। आपको कोई अतिरिक्त सॉफ़्टवेयर स्थापित करने की आवश्यकता नहीं है, और परिणामस्वरूप आपके सर्वर / कार्य केंद्र को पूरी तरह से एमएस द्वारा समर्थित रखा जाता है।
आपको स्थायी होने के लिए उन्नत स्क्रिप्ट के साथ हर स्क्रिप्ट पर इस स्क्रिप्ट को चलाना चाहिए। विंडोज टास्क शेड्यूलर आपके लिए ऐसा कर सकता है। यदि विंडोज इंस्टॉल एक वर्चुअल मशीन के अंदर है और आप उस वीएम को आवंटित रैम की मात्रा को बदल देते हैं, तो आपको इसे बदलाव के बाद भी चलाना चाहिए।
आप इस स्क्रिप्ट को किसी भी समय चल रहे सिस्टम पर चला सकते हैं, जबकि उत्पादन में सिस्टम को रिबूट किए बिना या किसी भी सेवाओं को बंद करने के लिए उपयोग कर सकते हैं।
# Filename: setfc.ps1
$version = 1.1
#########################
# Settings
#########################
# The percentage of physical ram that will be used for SetSystemFileCache Maximum
$MaxPercent = 12.5
#########################
# Init multipliers
#########################
$OSBits = ([System.IntPtr]::Size) * 8
switch ( $OSBits)
{
32 { $KiB = [int]1024 }
64 { $KiB = [long]1024 }
default {
# not 32 or 64 bit OS. what are you doing??
$KiB = 1024 # and hope it works anyway
write-output "You have a weird OS which is $OSBits bit. Having a go anyway."
}
}
# These values "inherit" the data type from $KiB
$MiB = 1024 * $KiB
$GiB = 1024 * $MiB
$TiB = 1024 * $GiB
$PiB = 1024 * $TiB
$EiB = 1024 * $PiB
#########################
# Calculated Settings
#########################
# Note that because we are using signed integers instead of unsigned
# these values are "limited" to 2 GiB or 8 EiB for 32/64 bit OSes respectively
$PhysicalRam = 0
$PhysicalRam = [long](invoke-expression (((get-wmiobject -class "win32_physicalmemory").Capacity) -join '+'))
if ( -not $? ) {
write-output "Trying another method of detecting amount of installed RAM."
}
if ($PhysicalRam -eq 0) {
$PhysicalRam = [long]((Get-WmiObject -Class Win32_ComputerSystem).TotalPhysicalMemory) # gives value a bit less than actual
}
if ($PhysicalRam -eq 0) {
write-error "Cannot Detect Physical Ram Installed. Assuming 4 GiB."
$PhysicalRam = 4 * $GiB
}
$NewMax = [long]($PhysicalRam * 0.01 * $MaxPercent)
# The default value
# $NewMax = 1 * $TiB
#########################
# constants
#########################
# Flags bits
$FILE_CACHE_MAX_HARD_ENABLE = 1
$FILE_CACHE_MAX_HARD_DISABLE = 2
$FILE_CACHE_MIN_HARD_ENABLE = 4
$FILE_CACHE_MIN_HARD_DISABLE = 8
################################
# C# code
# for interface to kernel32.dll
################################
$source = @"
using System;
using System.Runtime.InteropServices;
namespace MyTools
{
public static class cache
{
[DllImport("kernel32", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern bool GetSystemFileCacheSize(
ref IntPtr lpMinimumFileCacheSize,
ref IntPtr lpMaximumFileCacheSize,
ref IntPtr lpFlags
);
[DllImport("kernel32", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern bool SetSystemFileCacheSize(
IntPtr MinimumFileCacheSize,
IntPtr MaximumFileCacheSize,
Int32 Flags
);
[DllImport("kernel32", CharSet = CharSet.Unicode)]
public static extern int GetLastError();
public static bool Get( ref IntPtr a, ref IntPtr c, ref IntPtr d )
{
IntPtr lpMinimumFileCacheSize = IntPtr.Zero;
IntPtr lpMaximumFileCacheSize = IntPtr.Zero;
IntPtr lpFlags = IntPtr.Zero;
bool b = GetSystemFileCacheSize(ref lpMinimumFileCacheSize, ref lpMaximumFileCacheSize, ref lpFlags);
a = lpMinimumFileCacheSize;
c = lpMaximumFileCacheSize;
d = lpFlags;
return b;
}
public static bool Set( IntPtr MinimumFileCacheSize, IntPtr MaximumFileCacheSize, Int32 Flags )
{
bool b = SetSystemFileCacheSize( MinimumFileCacheSize, MaximumFileCacheSize, Flags );
if ( !b ) {
Console.Write("SetSystemFileCacheSize returned Error with GetLastError = ");
Console.WriteLine( GetLastError() );
}
return b;
}
}
public class AdjPriv
{
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall, ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen);
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);
[DllImport("advapi32.dll", SetLastError = true)]
internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);
[StructLayout(LayoutKind.Sequential, Pack = 1)]
internal struct TokPriv1Luid
{
public int Count;
public long Luid;
public int Attr;
}
internal const int SE_PRIVILEGE_ENABLED = 0x00000002;
internal const int SE_PRIVILEGE_DISABLED = 0x00000000;
internal const int TOKEN_QUERY = 0x00000008;
internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
public static bool EnablePrivilege(long processHandle, string privilege, bool disable)
{
bool retVal;
TokPriv1Luid tp;
IntPtr hproc = new IntPtr(processHandle);
IntPtr htok = IntPtr.Zero;
retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);
tp.Count = 1;
tp.Luid = 0;
if(disable)
{
tp.Attr = SE_PRIVILEGE_DISABLED;
} else {
tp.Attr = SE_PRIVILEGE_ENABLED;
}
retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid);
retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
return retVal;
}
}
}
"@
# Add the c# code to the powershell type definitions
Add-Type -TypeDefinition $source -Language CSharp
#########################
# Powershell Functions
#########################
function output-flags ($flags)
{
Write-output ("FILE_CACHE_MAX_HARD_ENABLE : " + (($flags -band $FILE_CACHE_MAX_HARD_ENABLE) -gt 0) )
Write-output ("FILE_CACHE_MAX_HARD_DISABLE : " + (($flags -band $FILE_CACHE_MAX_HARD_DISABLE) -gt 0) )
Write-output ("FILE_CACHE_MIN_HARD_ENABLE : " + (($flags -band $FILE_CACHE_MIN_HARD_ENABLE) -gt 0) )
Write-output ("FILE_CACHE_MIN_HARD_DISABLE : " + (($flags -band $FILE_CACHE_MIN_HARD_DISABLE) -gt 0) )
write-output ""
}
#########################
# Main program
#########################
write-output ""
#########################
# Get and set privilege info
$ProcessId = $pid
$processHandle = (Get-Process -id $ProcessId).Handle
$Privilege = "SeIncreaseQuotaPrivilege"
$Disable = $false
Write-output ("Enabling SE_INCREASE_QUOTA_NAME status: " + [MyTools.AdjPriv]::EnablePrivilege($processHandle, $Privilege, $Disable) )
write-output ("Program has elevated privledges: " + ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") )
write-output ""
whoami /PRIV | findstr /I "SeIncreaseQuotaPrivilege" | findstr /I "Enabled"
if ( -not $? ) {
write-error "user Security Token SE_INCREASE_QUOTA_NAME: Disabled`r`n"
}
write-output "`r`n"
#########################
# Get Current Settings
# Init variables
$SFCMin = 0
$SFCMax = 0
$SFCFlags = 0
#Get Current values from kernel
$status = [MyTools.cache]::Get( [ref]$SFCMin, [ref]$SFCMax, [ref]$SFCFlags )
#typecast values so we can do some math with them
$SFCMin = [long]$SFCMin
$SFCMax = [long]$SFCMax
$SFCFlags = [long]$SFCFlags
write-output "Return values from GetSystemFileCacheSize are: "
write-output "Function Result : $status"
write-output " Min : $SFCMin"
write-output (" Max : $SFCMax ( " + $SFCMax / 1024 / 1024 / 1024 + " GiB )")
write-output " Flags : $SFCFlags"
output-flags $SFCFlags
#########################
# Output our intentions
write-output ("Physical Memory Detected : $PhysicalRam ( " + $PhysicalRam / $GiB + " GiB )")
write-output ("Setting Max to " + $MaxPercent + "% : $NewMax ( " + $NewMax / $MiB + " MiB )`r`n")
#########################
# Set new settings
$SFCFlags = $SFCFlags -bor $FILE_CACHE_MAX_HARD_ENABLE # set max enabled
$SFCFlags = $SFCFlags -band (-bnot $FILE_CACHE_MAX_HARD_DISABLE) # unset max dissabled if set
# or if you want to override this calculated value
# $SFCFlags = 0
$status = [MyTools.cache]::Set( $SFCMin, $NewMax, $SFCFlags ) # calls the c# routine that makes the kernel API call
write-output "Set function returned: $status`r`n"
# if it was successfull the new SystemFileCache maximum will be NewMax
if ( $status ) {
$SFCMax = $NewMax
}
#########################
# After setting the new values, get them back from the system to confirm
# Re-Init variables
$SFCMin = 0
$SFCMax = 0
$SFCFlags = 0
#Get Current values from kernel
$status = [MyTools.cache]::Get( [ref]$SFCMin, [ref]$SFCMax, [ref]$SFCFlags )
#typecast values so we can do some math with them
$SFCMin = [long]$SFCMin
$SFCMax = [long]$SFCMax
$SFCFlags = [long]$SFCFlags
write-output "Return values from GetSystemFileCacheSize are: "
write-output "Function Result : $status"
write-output " Min : $SFCMin"
write-output (" Max : $SFCMax ( " + $SFCMax / 1024 / 1024 / 1024 + " GiB )")
write-output " Flags : $SFCFlags"
output-flags $SFCFlags
शीर्ष के पास लाइन है जो कहती है $MaxPercent = 12.5
कि कुल भौतिक रैम के 12.5% के लिए नया अधिकतम कामकाजी सेट (सक्रिय मेमोरी) सेट करता है। विंडोज सिस्टम की मांगों के आधार पर सक्रिय मेमोरी में मेटाफ़ाइल डेटा की मात्रा को गतिशील रूप से आकार देगा, इसलिए आपको इसे अधिकतम डायनामिक रूप से समायोजित करने की आवश्यकता नहीं है।
यह आपके द्वारा मैप की गई फ़ाइल कैश के बहुत बड़े होने के साथ किसी भी समस्या को ठीक नहीं करेगा।
मैंने एक GetSystemFileCacheSize
पॉवरशेल स्क्रिप्ट भी बनाई है और इसे StackOverflow पर पोस्ट किया है ।
संपादित करें: मुझे यह भी इंगित करना चाहिए कि आपको इन 2 लिपियों में से एक ही पॉवर्सशेल इंस्टेंस से एक से अधिक बार नहीं चलना चाहिए, या आपको यह त्रुटि प्राप्त होगी कि Add-Type
कॉल पहले ही हो चुकी है।
संपादित करें: SetSystemFileCacheSize
संस्करण 1.1 के लिए अद्यतन स्क्रिप्ट जो आपके लिए एक उपयुक्त अधिकतम कैश मान की गणना करता है और एक अच्छा स्थिति आउटपुट लेआउट है।
संपादित करें: अब मैंने अपना विंडोज 7 लैपटॉप अपग्रेड कर लिया है, मैं आपको बता सकता हूं कि स्क्रिप्ट विंडोज 10 में सफलतापूर्वक चलती है, हालांकि मैंने परीक्षण नहीं किया है अगर यह अभी भी आवश्यक है। लेकिन वर्चुअल मशीन HDD फ़ाइलों को चारों ओर ले जाने पर भी मेरा सिस्टम स्थिर है।