hyeonjae
hyeonjae
sync docs with https://github.com/aequasi/fluent-behavior-tree/commit/8724ce7a610f884aa1d36effd176a8244f45c4bf
If the record has avro type, the codec is not recognized. ```avro { "type": "record", "name": "Parent", "fields" : [ {"name": "child", "type": "Child"} ] } ``` To solve this...
https://developers.google.com/protocol-buffers/docs/reference/proto3-spec#service_definition ## 1 A whitespace between rpc and rpcName is not necessary. ```proto service SearchService { rpc Search (SearchRequest) returns (SearchResponse); } ``` Below case should be highlighted properly. ```...
Proposal: Performance and Type-Safety Improvements in DocumentAdapters.from() Field Conversion Logic
I would like to propose an enhancement to the field conversion logic within `DocumentAdapters.from(Hit hit, JsonpMapper jsonpMapper)` to improve both performance and type safety. Currently, the method uses the following...