[v8-users] Re: Newbie doubt about property name allocation

2013-01-20 Thread Jason Del Ponte
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

[v8-users] Re: V8 handle scope usage error.

2013-01-20 Thread Jason Del Ponte
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