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
Ceramic is pretty well optimised when targeting C++. It also runs fairly well on Web/JS. That said there are several places where arrays are initialized/updated in a way that will create sparse arrays on JS runtimes, which can affect performances if these arrays are used a lot.
Code at those places should be updated so that it sticks internally to contiguous typed arrays which will be better optimised by JS runtimes. Overall it is not a difficult task, just needs some time to review the places that can be improved.
The text was updated successfully, but these errors were encountered:
Ceramic is pretty well optimised when targeting C++. It also runs fairly well on Web/JS. That said there are several places where arrays are initialized/updated in a way that will create sparse arrays on JS runtimes, which can affect performances if these arrays are used a lot.
Code at those places should be updated so that it sticks internally to contiguous typed arrays which will be better optimised by JS runtimes. Overall it is not a difficult task, just needs some time to review the places that can be improved.
The text was updated successfully, but these errors were encountered: