Wow, that's annoying, if you open an account with Redis Cloud (redis's hosted service), then you can't self-close it, and instead need to file support ticket to get them to delete your data.
Post
Wow, that's annoying, if you open an account with Redis Cloud (redis's hosted service), then you can't self-close it, and instead need to file support ticket to get them to delete your data.
package require retcl
retcl create redis
set pattern [lindex $argv 0]
set keys [redis -sync keys $pattern]
foreach key $keys {
puts "del $key"
redis -sync del $key
}
A space for Bonfire maintainers and contributors to communicate