1
0
Fork 0
mirror of https://github.com/rubyjs/mini_racer synced 2023-03-27 23:21:28 -04:00

PERF: on boundary convert to and from json

Previously we would walk the object graph recursively and convert,
this proves to be extremely slow for large objects due to recursion and
huge amount of v8 contexts that were created

By converting objects to json on the boundary we also correct timeout
semantics and so on.
This commit is contained in:
Sam 2017-03-09 16:03:13 -05:00
parent 3a20c6d315
commit 42ffdd15b3
6 changed files with 79 additions and 26 deletions

View file

@ -1,3 +1,9 @@
09-03-2017
- 0.1.9
- Perf: speed up ruby/node boundary performance when moving large objects
06-02-2017
- 0.1.8