You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New: Use different dispatchers for cache vs code execution. Both the cache and QuickJS need to be
thread-confined, but they don't need to be confined to the same thread. With this release we've
added a new CoroutineDispatcher parameter to ZiplineLoader.withCache(). It is used when
reading and writing the cache. The existing CoroutineDispatcher used to create the ZiplineLoader is used to access QuickJS.
New: EventListener.cacheHit() is called on each cache hit.