adam-szpilewicz.plCDC replication from mysql using go (golang)Change Data Capture (CDC) is a technique that allows applications to monitor and respond to changes in a database in real-time. In the context of MySQL, CDC can be used to capture changes to the database in the form of binlog events and react to them...Feb 28, 2023·5 min read
adam-szpilewicz.plHow to start with golangGetting started with a new programming language can be daunting, but it can also be exciting and rewarding. Go, also known as Golang, is a relatively new programming language that has been gaining popularity in recent years due to its simplicity, spe...Feb 27, 2023·3 min read
adam-szpilewicz.plCDC replication from postgresql using go (golang)Change Data Capture intro Change Data Capture (CDC) is a technique used to track the changes made to data in a database, allowing you to keep track of the evolution of the data. In PostgreSQL, CDC is achieved using the logical replication feature, wh...Feb 26, 2023·6 min read