[v8-users] Re: [blink-dev] Re: [v8-dev] Re: Intent to Implement: Intl.DisplayNames API Proposal

2019-05-15 Thread Frank Tang
Sorry, I am not quite sure what you mean. It seems to me a suggestion of proposing additional standard in HTML spec. Do you mind to raise the issue in https://github.com/tc39/proposal-intl-displaynames/issues with more information so other members in ECMA402 subcommittee can help me to take action

[v8-users] gc and threading

2019-05-15 Thread Ledion Bitincka
I'm trying to improve some serialization code in NodeJS and was wondering if this could be achieved by going down to the native code and using multiple threads to parallelize the serialization of multiple objects. For example, imagine we need to serialize 1K objects to JSON/OtherFormat - split

Re: [v8-users] gc and threading

2019-05-15 Thread Jakob Kummerow
> > I'm trying to improve some serialization code in NodeJS and was wondering > if this could be achieved by going down to the native code and using > multiple threads to parallelize the serialization of multiple objects. For > example, imagine we need to serialize 1K objects to JSON/OtherFormat -

[v8-users] Re: [blink-dev] Re: [v8-dev] Re: Intent to Implement: Intl.DisplayNames API Proposal

2019-05-15 Thread PhistucK
Thank you for your thoughts, all. I filed an issue with HTML - https://github.com/whatwg/html/issues/4630 ☆*PhistucK* On Wed, May 15, 2019 at 10:52 PM Shane Carr wrote: > Hi PhistucK, > > Thanks for the feedback! Adding HTML for Intl features would be out of > scope for this feature. We

Re: [v8-users] gc and threading

2019-05-15 Thread Ledion Bitincka
Thanks! > While I understand that this is tempting, please be aware that only one thread may be active in one Isolate at any given time. I was hoping that there could be multiple threads that had "read-only" access to an Isolate's heap - I was looking through how ValueSerializer works and now