문제

We are implemented expression evaluator via hosting IronRuby engine. Simplified version of evaluator you can see here.

Now we are trying to get more performance from IronRuby via executing expressions in many threads (and we got it). One question bothers us - is Execute method thread safe?

도움이 되었습니까?

해결책

ScriptRuntime, ScriptEngine, and ScriptScope are all thread safe, designed to be used between threads. Specifically, ScriptScope uses a thread-safe data-store, so ScriptScope can be shared between threads.

If you provide your own scope for scripts to execute against, you will need to ensure that scope's data store is thread-safe. Also, when mutating data in a ScriptScope, thread-safety is ensured by locking, so be aware that many different threads mutating a shared ScriptScope will degrade performance. Reading data from a ScriptScope does not lock.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top