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
During the backup key loop (uploading keys to the remote backup), Element-R will invoke olmMachine.roomKeyCounts().
When this operation become slow, send performaces are degraded.
There is a threshold on FF (mac M1), where the count performances drops and stop beeing O(n)
Not seen in Chrome (mac m1)
I tested on another mac (intel chip) on FF and performances stays in O(n).
This also direclty related to the size of keys in the object store (dividing the size of each room key will delay the threshold where performances drop)
The text was updated successfully, but these errors were encountered:
During the backup key loop (uploading keys to the remote backup), Element-R will invoke
olmMachine.roomKeyCounts()
.When this operation become slow, send performaces are degraded.
Step to reproduce
Can be reproduced by typing this in the console:
Just after starting this, you can try to send a message. It will be blocked until the count request has completed.
The count performances are particularly bad on Firefox M1 from my testing:
Firefox:
There is a threshold on FF (mac M1), where the count performances drops and stop beeing O(n)
Not seen in Chrome (mac m1)
I tested on another mac (intel chip) on FF and performances stays in O(n).
This also direclty related to the size of keys in the object store (dividing the size of each room key will delay the threshold where performances drop)
The text was updated successfully, but these errors were encountered: