Apply suggestion to installation/nginx-cache-purge.sh.example

This commit is contained in:
Maksim 2020-05-20 04:12:21 +00:00
parent b5b9d161cd
commit 376147fb82
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ CACHE_DIRECTORY="/tmp/pleroma-media-cache"
## $3 - (optional) the number of parallel processes to run for grep.
get_cache_files() {
local max_parallel=${3-16}
find $2 -maxdepth 2 -type d | xargs -P $max_parallel -n 1 grep -ERl "^KEY:.*$1" | sort -u
find $2 -maxdepth 2 -type d | xargs -P $max_parallel -n 1 grep -E Rl "^KEY:.*$1" | sort -u
}
## Removes an item from the given cache zone.