Comparing Sequence Numbers Responsibly
Whenever you use a monotically increasing integer in your code, there’s always the possibility of it reaching the end of its range and wrapping around. So what do we do? Use a bigger integer? Let’s talk about it!