search for: touchtime_ms

Displaying 2 results from an estimated 2 matches for "touchtime_ms".

2020 Oct 15
2
Performance regression of Windows clients?
...e 100 files # # parameter: target directory (which must exist) param( [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()]$path ) # first touch the files $duration = Measure-Command { 1..100 | ForEach-Object { New-Item -Path $path -Name "test.$_" -ItemType File -Force } } $touchtime_ms = [math]::Round($duration.TotalMilliseconds) # then remove them $duration = Measure-Command {Remove-Item -Path $path\* -Force} $rmtime_ms = [math]::Round($duration.TotalMilliseconds) Write-Host "Touch time: $touchtime_ms" Write-Host "Remove time: $rmtime_ms"
2020 Oct 15
2
Performance regression of Windows clients?
On 13/10/2020 23:00, Jeremy Allison wrote: > On Mon, Oct 12, 2020 at 03:16:31PM +0200, Giuseppe Lo Presti via samba wrote: [...] >> As the mentioned thread seems to have been moved to the samba-technical >> mailing list, was there any conclusion reached? In particular, we?re looking >> for suggestions on possible reconfigurations (if any!) of our Windows >> clients, as