Redis 6 RC1 is out today
antirez.com
Redis 6 RC1 is out today
1–10 of 12 posts
Re: Redis 6 RC1 is out today
#2Re: Redis 6 RC1 is out today
#3Can't wait for Threaded I/O as our app main bottleneck in some deployments was Redis.
Re: Redis 6 RC1 is out today
#4Re: Redis 6 RC1 is out today
#5Can't wait for Threaded I/O as our app main bottleneck in some deployments was Redis.
Threading can help up to a given point but sharing is the way to go.
Other use case involves LUA scripts that operate on 5 different keys, so cluster/proxy is out of question.
Re: Redis 6 RC1 is out today
#6This got me thinking about using Redis and I needed a review of what is open source and what isn't: https://redislabs.com/legal/licenses/
Re: Redis 6 RC1 is out today
#7Earlier quoted context omitted.
Threading can help up to a given point but sharing is the way to go.
One of our bottlenecks was really big keys (>1MB) being written and read too often and effectively stealing all the CPU time. That was fixed in the app by reducing the number of operations + compression. Threaded IO will give us a little more room. Other use case involves LUA scripts that operate on 5 different keys, so cluster/proxy is out of question.
Re: Redis 6 RC1 is out today
#8Re: Redis 6 RC1 is out today
#9Re: Redis 6 RC1 is out today
#10Earlier quoted context omitted.
Threading can help up to a given point but sharing is the way to go.
One of our bottlenecks was really big keys (>1MB) being written and read too often and effectively stealing all the CPU time. That was fixed in the app by reducing the number of operations + compression. Threaded IO will give us a little more room. Other use case involves LUA scripts that operate on 5 different keys, so cluster/proxy is out of question.