Christian Wirth

Results 102 comments of Christian Wirth

Hi @no0ker thanks for your code, much easier to talk about concrete items. There is quite a fundamental difference in how you use Nashorn vs Graal.js: In your Nashorn variant,...

I have no insight into how you would code such a scenario. The point of my solution is: have one `Context` per Thread, and execute your requests in sequence on...

> This is exactly what i mean: Sometimes, multithreading is required. Production environments usually run on servers with 32+ threads, and for a reason. And we fully support that. Just...

> I get that people might be irresponsible with multithreading, and cause tons of bug-reports simply due to them misusing some experimental multithreading feature; The problem is not only user-code,...

Hi @ronayadid thanks for your code example. I am able to execute and benchmark it on my machine. I have yet to look into it in more detail, but two...

Hi @frank-dspeed sorry I don't really understand what you expect us to do. In what embedding scenario do you want to replace v8? Replacing v8 can mean many things. Where...

Since GraalVM 20.1 you can specify a `hostClassLoader` when creating a `Context` (via `Context.newBuilder("js").hostClassLoader(....).build();`).

Hi @pramodanarase can you please share a bit more about your setup. Ideally, what is your exact version and commandline you run java on and what additional setup do you...

Hi @pramodanarase thanks for your code. I'll have to dig deeper on this later, but there are two immediate observations I have: **JDK 8** On JDK 8, you won't get...

Hi @mikehearn Thanks for your report, we will investigate. We have support for this in principle, but we only provide it in our `nashorn-compat` mode (see https://github.com/graalvm/graaljs/blob/master/docs/user/NashornMigrationGuide.md#accessors). We'll check if...