From b3a8d847706139e90c004c2b82b2beea5d77e4a7 Mon Sep 17 00:00:00 2001 From: Siyuan Date: Thu, 13 Nov 2025 15:57:13 +0000 Subject: [PATCH] add a simple README for the native package --- internal/native/README.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 internal/native/README.md diff --git a/internal/native/README.md b/internal/native/README.md new file mode 100644 index 00000000..a02976e4 --- /dev/null +++ b/internal/native/README.md @@ -0,0 +1,6 @@ +# jetkvm-native + +This component (`internal/native/`) acts as a bridge between Golang and native (C/C++) code. +It manages spawning and communicating with a native process via sockets (gRPC and Unix stream). + +For performance-critical operations such as video frame, **a dedicated Unix socket should be used** to avoid the overhead of gRPC and ensure low-latency communication. \ No newline at end of file