Email or username:

Password:

Forgot your password?
Top-level
Thomas Wuerthinger

@borkdude Why not embed GraalPy in your #GraalVM native image and run Python with full Truffle-based interop this way?

3 comments
(λ. borkdude)

@thomaswue That's fair, but it's not what I wanted to demo here: making a shared binary with GraalVM that can be called from almost any environment via FFI. E.g. from PostgresQL: github.com/borkdude/plsci

Thomas Wuerthinger

@borkdude Ok, understand. For this to work well, we would maybe auto-generate some FFI adapters for some languages, because I don’t think referencing a raw binary is convenient for most languages? There also has to be maybe some stuff sorted out regarding heap setup after loading the native image binary.

Go Up