go-ipam icon indicating copy to clipboard operation
go-ipam copied to clipboard

Redis should use Scan instead of Keys

Open dzvancuks opened this issue 2 years ago • 0 comments

As per official Redis guidelines

Warning: consider KEYS as a command that should only be used in production environments with extreme care. It may ruin performance when it is executed against large databases. This command is intended for debugging and special operations, such as changing your keyspace layout. Don't use KEYS in your regular application code. If you're looking for a way to find keys in a subset of your keyspace, consider using SCAN or sets.

https://redis.io/commands/keys/

dzvancuks avatar Jun 23 '22 14:06 dzvancuks