loongs-zhang commented on issue #5425: URL: https://github.com/apache/shenyu/issues/5425#issuecomment-2003789567
> 1. While WASM doesn't natively support threads, how will the KitexPlugin leverage alternative WASM concurrency mechanisms (e.g., WebAssembly SIMD instructions, asynchronous tasks) to handle Kitex's asynchronous service calls efficiently within the WASM environment? > 2. Are there any limitations or specific considerations for handling asynchronous operations within the WASM context for Kitex service calls? This could involve potential deadlocks, race conditions, or limitations on the number of concurrent operations supported by the chosen WASM concurrency approach. The Java part of KitexPlugin uses multithreading, while the WASM part uses single threading. > 3. Can the KitexPlugin leverage WASM exception handling mechanisms (if available) to capture and report WASM-specific errors that might occur during Kitex service calls within the WASM module? This could provide more granular error information compared to standard Go errors for debugging purposes. This is a good idea. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
