1 Repo
Duplicating compiled bytecode to enable parallel execution of the same script across multiple threads.
Distinct from Concurrent Thread Execution: Focuses on the mechanism of cloning bytecode for parallelism rather than general thread management
Explore 1 awesome GitHub repository matching programming languages & runtimes · Bytecode Cloning. Refine with filters or upvote what's useful.
Tengo is a dynamic, embeddable scripting language for Go applications that allows for the execution of custom scripts without requiring the host binary to be recompiled. It operates as a bytecode-compiled virtual machine, transforming source code into a compact intermediate representation for execution on a stack-based engine. The system is designed as a secure scripting sandbox, enforcing strict limits on memory allocation and execution time to safely run untrusted code. It supports concurrent script execution by cloning compiled bytecode and using recursive immutability conversion to share
Enables concurrent script execution by creating independent copies of compiled bytecode for safe parallel processing.