--
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to redis-db+u...@googlegroups.com.
To post to this group, send email to redi...@googlegroups.com.
Visit this group at https://groups.google.com/group/redis-db.
For more options, visit https://groups.google.com/d/optout.
However, as mentioned above, each instance of redis will be listening on a single port, hence the value of running multiple instances. But then you realise that you may as well get 10 VMs with 8 CPUs each, and "only" 256Gb of RAM each. Not only would the units be cheaper, but you avoid the networking bottlenecks too.
The other thing is to consider whether you need to push everything to redis immediately. If there is little contention, can you not aggregate the values on the 80k clients, and then push the results periodically, rather than at each operation?