I cannot answer your question specifically about how v8 internals work with
caching property names, but I might be able to help with general
information about Javascript objects.
On Tuesday, January 15, 2013 9:18:04 AM UTC-8, ajlopez wrote:
>
> Hi people!
>
> I will create in project (Node.js) a
I'm pretty new to v8, but I believe the exception you're hitting is because
your code is accessing the v8 context before v8's lock was incremented.
Common case for this would be if you have multiple threads attempting to
use the context at the same time. Creating a local v8::Locker in your
met