Customize OpenAPI Generator with Mustache template
The OpenAPI Generator tool can help us generating API clients from the OpenAPI Spec. But what if we want to add some modification? Enter the Mustache template.
About technology stuff that piqued my interest
The OpenAPI Generator tool can help us generating API clients from the OpenAPI Spec. But what if we want to add some modification? Enter the Mustache template.
I used to write all API client code myself. Then I took an OpenAPI Generator to the knee. The works that used to take day can now be done in seconds.
Write code to read CSV files does not seem like a difficult task. Then you learn of all those caveats of the CSV format.
In Redis, there is no concept of sliding expiration. If so, how did StackExchangeRedis implement this feature? Let’s find out here.
The third article in a series about Redis-based distributed caching. We will see how Redis can help us exchange data between a Python and a C# .NET application.
The second article in a series about Redis-based distributed caching. We will look at StackExchangeRedis, a C# package to interact with Redis.
The first article in a series about Redis-based distributed caching. We will take a look at aioredis, a Python library to make non-blocking calls to Redis.
Redis is a popular choice when we need a distributed cache. Find out how to integrate Redis with Python and C# .NET in this three-part series.
String is a fundamental type in C#, and most of us use it all the times. But some of its features, like string interning for example, can trip us up.
The Reflection API is flexible but not very fast. By generating the IL code ourselves with dynamic code generation, we can significantly improve performance.