On Mon, Dec 19, 2016 at 9:09 PM, Nitin Pasumarthy <[email protected]> wrote: > We would like to have as minimal footprint and over head on device as our > input scripts can be really simple expressions.
V8 trades time for space, as a rule of thumb, so if you are looking to minimize memory usage, V8 probably isn't for you. A fresh VM instance consumes about 1-2 MB, depending on the architecture and compiled-in features, and grows quickly once you move beyond simple one-liners. You can have multiple execution contexts per VM but each context still takes up at least 400-800 kB and they can't run in parallel. -- -- 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.
