新建NewtonsoftJsonSerializer.cs
/// <summary>
/// ISerializer implementation based on Newtonsoft.Json.
/// Default serializer used in calls to GetJsonAsync, PostJsonAsync, etc.
/// </summary>
public class NewtonsoftJsonSerializer : IJsonSerial…
实体类常用注解
Data
Data 是一个 Lombok 提供的注解,使用 Data 注解可以简化代码,使代码更加简洁易读。
作用:自动为类生成常用的方法,包括 getter、setter、equals、hashCode 和 toString 等需要加Lombok的依赖
<depende…
内存泄漏是一种常见的问题,它会导致程序的内存占用逐渐增加,最终导致系统资源耗尽或程序崩溃。AddressSanitizer (ASan) 和 Valgrind 是很好的内存检测工具,TDengine 的 CI 过程就使用了 ASan 。不过这次内存泄漏问题发生在 Windows 下&#…