-
Notifications
You must be signed in to change notification settings - Fork 73
Rename "runtime" to "engine". #256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Piotr Sikora <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has been bugging me for a while, since Proxy-Wasm C++ Host is the runtime, so the other things must be something else... Thoughts?
Signed-off-by: Piotr Sikora <[email protected]>
this sounds weird to me as |
quote from wastime doc https://docs.wasmtime.dev/api/wasmtime/struct.Engine.html :
|
C++ host IMO is an embedder, not a runtime, so using the word |
Agreed, C++ Host is an embedder of the engine/runtime, but that's not mutually exlusive with either, IMHO.
But that's the part we're referring to here (i.e. From https://github.com/WebAssembly/wasm-c-api:
I agree that the terminology is a bit murky, because most of the Wasm engines are included as part of Wasm runtimes, which can start Wasm modules and expose runtime environment for them (WASI, etc.). But if you look at V8 and JavaScript, it's a bit more clear there: From https://v8.dev:
From https://nodejs.org/en/:
From https://en.wikipedia.org/wiki/Deno_(software):
From https://github.com/bytecodealliance/wasmtime/tree/main/cranelift: |
This article has a good explaination of |
Signed-off-by: Piotr Sikora <[email protected]>
…-engine Signed-off-by: Piotr Sikora <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>
Signed-off-by: Piotr Sikora [email protected]