-
When someone sends a lot of events to the socket (~ 5-10 per second), it locks the main thread completely, until messages stop. Consider using webworkers.
-
This is possible using WebWorkers, which ably-js supports.
However:
* [ ] We provide no examples or advice on how to approach this
* [ ] Our official documentation (www.ably.io/documentation) makes…
-
It is possible already to run JSIL in WebWorker.
It is also possible to run JSIL at the same time in main thread and WebWorker.
I'd like to discuss any option for quick passing .Net object between Web…
-
# Note
This issue is migrated from [here](http://www.cocos2d-x.org/issues/4671). It was created at 2014/04/03 13:30:27 +0000
# Description
I know this one (as most of my feature suggestions) is eas…
-
Allowing media playback to occur outside of the main thread can have many performance benefits, especially when the the main thread is under heavy contention. MSEv2 is bringing worker support to the s…
-
recent chrome versions are fine using webworkers + gpu. See this article: https://medium.com/@wl1508/webworker-in-tensorflowjs-49a306ed60aa
-
Right now conferences are fetch every time from the server. Take advantage of browser caching through web workers for instance.
-
Thanks for doing this port; it's pretty fun to fool around with.
You don't seem to terminate your WebWorkers, though. They aren't automatically garbage collected; you need to either `terminate` each …
jvilk updated
9 years ago
-
if i use web-workers on iOS8 all goes perfectly but if i run the same code in iOS9 a securityError is fired
the code i use is:
`var worker = new Worker('worker.js');`
and the error given is:
i suppo…
-
useful for plugins to implement heavy processing such as fuzzy search.
Also need to implement TransferrableObjects for perf if possible. https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers…