Hello there, I am looking for a time-efficient way to store private (hidden) values in an object. I get key-value pairs (where key is of type v8::String and value of type v8::Value), and I need to attach them to existing objects.
What I came up with so far - is using v8::Object's SetPrivate() function. The only problem with it, is that this method takes a v8::Private as its first argument. There is a costly conversion between v8::String to v8::Private (using the ForApi method). Performance goes down, and after profiling with callgrind, I see that ForApi is taking up too many cycles. Is there a quicker way to accomplish this? (I am running 4.9) Regards, Danny -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
