redis> AUTH 1ns3cure123
OK
redis> keys '*'
<60 million keys scroll by...>
redis> flushdb
OK
(71.57s)What’s new in Redis OSS 6?
What’s new in Redis Enterprise 6?
Released April 30 2020
Many speed improvements
Access Control Lists (ACLs)
Native TLS
New Protocols
redis> AUTH 1ns3cure123
OK
redis> keys '*'
<60 million keys scroll by...>
redis> flushdb
OK
(71.57s)redis> AUTH frontend Really1ns3cure
redis> get mykey
"mykeyValue"
redis> set mykey newVal
(error) NOPERM this user has no permissions to run the 'set' command or its subcommand
redis> keys '*'
(error) NOPERM this user has no permissions to run the 'keys' command or its subcommand
redis> flushdb
(error) NOPERM this user has no permissions to runredis> AUTH backend m0res3cure
OK
redis> set mykey NewValue
OK
redis> get mykey
"NewValue"
redis> flushdb
(error) NOPERM this user has no permissions to run the 'flushdb' command or its subcommandSupports newer TLS versions
Secure connections between client and server
Already supported in Enterprise
REdis Serialization Protocol
New more efficient protocol
Backwards compatibility with RESP2
Enables client-side caching
Access Control Lists (ACLs)
Role Based Access Control (RBAC)
Redis Streams Active/Active Support
ACLs are awesome! Managing ACLS, not so much…
~* +@write +@read +@dangerous -@all
~s:* +@write ~* +@read +@slow -@dangerous
~s:* +@write ~* +@read -@slow -@dangerous








