I want to sync a Postgres table (2 million records) to Redis.
Requirements:
- Full table should sync initially
- After that, realtime insert/update/delete should sync to Redis automatically (no polling)
I have tried:
pgsync → but got "no source issue"
Red Courier (Golang) → but private docker image, could not proceed
What is the best way to do this? I want something reliable and not too complex to maintain.