0
この検索を高速化するのには誰が助けますか?このコードで検索に数日かかります。 Search_Names.csv(約10K名) Need_This_Long_Strings.csv(約180Kの文字列と、それは50メガバイトです)PowerShellスクリプトで検索を高速化する必要があります
$TimeStamp = Get-Date -Format {yyyy.MM.dd_hh.mm.ss}
$SearchNames = gc D:\Search_Names.csv
$WhereSearch = gc D:\Need_This_Long_Strings.csv
$Val = 0
foreach ($SearchName in $SearchNames)
{
$WhereSearch | Where{$_ | Select-String -Pattern "$SearchName.*"} | Out-File D:\Find_in_Search_File_$TimeStamp.log -Append
$Val = $Val + 1
}
"Count of matches - $Val" |Out-File D:\Find_in_Search_File_$TimeStamp.log -Append