Xuanwo
Xuanwo
Thank you so much for the research! Implementing support for Proton Drive is indeed a challenge.
Hi, the tikv-client has been migrated to `tonic`. Therefore, I believe that this issue is no longer valid. I will proceed to close this issue, but please feel free to...
这个是主题是不维护了么?我看PR都不少个了。。
Invite @tisonkun join the discussion.
Does dotnet has native types like `Vec` or bytes? Maybe we should provide correct API instead `string` at dotnet side?
> But it works for ansi strings only, and for non-ansi (e.g. Simplified Chinese), the original version also fails with linux Oh, that's unexpected. Our public API should accept any...
> With Marshal.StringToCoTaskMemUTF8 and Marshal.PtrToStringUTF8 it works on both windows and linux. but I am not sure with performance Maybe we should use `byte[]` in our .NET API instead of...
> I think the UTF8 here is enough for .NET binding. Can you elaborate more about this? We need to support writing data like png, pdf and parquet. Requiring users...
@Zheaoli, thank you for your explanation. I mixed different APIs during the discussion of this issue. Let me make them more clean: - `scheme` in `blocking_operator_construct`: must be ascii like...
> If we want to keep the same behavior for both windows and linux, we need to use 'Marshal.StringToCoTaskMemUTF8' manually. It's the recommended way from official. Okay, I understand: Even...