folk-runtime-embed 0.1.11

Embedded PHP runtime for Folk — PHP interpreter runs in-process via FFI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg(unix)]
//! Embedded PHP runtime for Folk.
//!
//! Embeds the PHP interpreter directly into the Rust process via FFI,
//! eliminating IPC overhead. Each worker runs on a dedicated OS thread
//! with its own isolated PHP runtime.

pub mod ffi;
mod handle;
pub mod php;
mod runtime;
mod worker;

pub use runtime::{EmbedConfig, EmbedRuntime};