18 Matching Annotations
  1. Mar 2025
    1. with the simple example of "ls | grep foo", then grep has to be started first, with its stdin then tied to the stdout of ls once ls starts.

      在这个简单的例子中,使用命令 ls | grep foo,grep 需要先启动,然后将它的 stdin 连接到 ls 的 stdout,一旦 ls 启动。

  2. Jun 2023
    1. As SaaS proliferates, the demands to automate, customize, or integrate SaaS products are also increasing.

      automate:自动化 customize:定制 integrate:整合

    1. 其中的一些框架提供了对服务端渲染的支持。这意味着我们在服务器上运行 WebAssembly 代码,并构建 HTML DOM UI,然后将 HTML 内容发送到浏览器,以此在较慢的设备和网络环境下获得更好的性能以及更快的启动速度。

      是在server端渲染,最终产物是html dom。

      这里和直接在server端画canvas并导出为图片资源看起来有出入?!

    1. 调用者(也就是宿主应用程序)必须在调用前将调用参数解构为内存指针,并在调用之后使用内存指针组装返回值。

      解构为内存指针和使用内存指针组装返回值具体是怎样的操作?

      这些操作可以由 WasmEdge 语言 SDK 自动完成。

    2. ,更常见的使用场景是将一个 Rust 函数编译成 WASM 字节码,然后在其他宿主程序中调用它。这被称为嵌入的 WASM 函数。

      嵌入的WASM函数