My random rumblings

Something of everything and nothing at all

PowerShell Redis Delete

Use the following PowerShell script to delete keys from Redis.

.\redis-cli keys * | foreach{ .\redis-cli del $_ }

Loading