Hello,
In Windows I have a Redis master node running. I write data from a sensor to Redis (blazing fast though) in master, but I want to read concurrent data (for charting) from a slave read-only replication (was my thought). This because when I do simultaneous write/reads then Redis will stall.
Some question:
- Is it possible to setup a replica on the same OS - Host listening on another port?
- Is this the way to solve the concurrent writing and reading in Redis?
Thanks in advance and with kind regards,
Ben