DEV Community

Natan Silnitsky
Natan Silnitsky

Posted on

4 Microservices Caching Patterns at Wix

Wix has a huge scale of traffic. more than 500 billion HTTP requests and more than 1.5 billion Kafka business events per day.

Alt Text

Caching the responses and events is critical for having the best performance and resilience for Wix’s 1500 microservices.

As traffic to your service grows, customers can face much longer loading and response times, and not return to your service. Network costs can increase and the unexpected load on your DBs can potentially cause them to fail. One of the ways you can mitigate these issues is to introduce a cache.

It will also improve reliability, by making sure some data can be returned even if aforementioned DB or 3rd party service are currently unavailable.

You can find the patterns here on my blog.

Top comments (0)