We are i开发者_开发问答mplemented 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.
精彩评论