> This is not a bug. The API you are using has been deprecated. Instead, you should use v8::ScriptCompiler::CreateCodeCache.
I implemented caching using the new mechanism and have to say that the old way was more logical and probably faster for a couple of reasons: * Passing `kProduceCodeCache` into `v8::ScriptCompiler::CompileUnboundScript` makes no sense now because it never produces cached data * The old mechanism had an opportunity to scan the source only once (whether it did or not is another story) and now it has to scan the source twice - once when it's compiled and once when the code cache is created. Anyway, working now. Thanks for pointing out the new method. Andre -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" 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.
