Thumbnail image

EASY JSON SERIALIZATION FOR KAFKA IN DOTNET

If you have used the dotnet Kafka Client from Confluent you may have noticed that the JsonSerializer requires a schema registry.

Read more
Thumbnail image

BETTER RATE LIMITING WITH KONG

There are many methods that you can use to protect your backend servers from being overloaded with too much traffic; from static pages to caching to CDNs. Sometimes though, like when you are serving dynamic or personalized pages, you can’t do anything but actually have requests hit your server. Most of the time you would have enough resources to be able to process the requests, and if you don’t, your servers will start to overload and perhaps return 500 Errors.

Read more