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
Conex stores full resolution jpeg screenshots of every page you browse. Ignoring the potential privacy issues with this, this becomes a severe performance issue over time.
Neither closing tabs, nor disabling thumbnails and favicons will purge these images, which are stored in base64 format in the extension's storage.js file.
Note that in the case of favicons, they will continue to be stored even if you disable the option (So you might as well leave it on)
After several months of "Normal" internet use, my file contains 9991 favicons, and 15364 thumbnails. I keep a lot of tabs open, but not 15364.
This results in a storage.js of over 900 megs, which is deserialized and reserialized by the browser several times a minute, sometimes within a second of eachother.
If your storage.js has gotten to this point, every time this file is deserialized/serialized your browser will lock up for several seconds, and ram usage will climb by approx. 6GB
Even on a lightweight linux distro like bunsenlabs, with a farily high-end machine, this serves to lock up the rest of the OS as well.
The fix for a user is to delete the file and set up their conex settings from scratch (While leaving thumbnails unchecked)
Potential solutions:
Garbage collect thumbnails and favicons from closed tabs
Don't save thumbnails/favicons, just keep them in memory
Edit: While I'm referencing an old firefox build that still used json to store settings instead of sqlite, the issue is still relevant IMO. A SELECT COUNT(*) FROM object_data on the storage file took quite a while, it's taking quite a lot of space, and it's probably got sensitive information
The text was updated successfully, but these errors were encountered:
yeah: I am aware of the problem and a complete rewrite is ongoing ... due to time constraints it won't be before July or August before this comes life.
Once rewritten, all the mentioned issues will be gone ... I currently lack the time to do a hotfix for the current version :/
Thanks for the detailed report though
Conex stores full resolution jpeg screenshots of every page you browse. Ignoring the potential privacy issues with this, this becomes a severe performance issue over time.
Neither closing tabs, nor disabling thumbnails and favicons will purge these images, which are stored in base64 format in the extension's
storage.js
file.Note that in the case of favicons, they will continue to be stored even if you disable the option (So you might as well leave it on)
After several months of "Normal" internet use, my file contains 9991 favicons, and 15364 thumbnails. I keep a lot of tabs open, but not 15364.
This results in a storage.js of over 900 megs, which is deserialized and reserialized by the browser several times a minute, sometimes within a second of eachother.
If your storage.js has gotten to this point, every time this file is deserialized/serialized your browser will lock up for several seconds, and ram usage will climb by approx. 6GB
Even on a lightweight linux distro like bunsenlabs, with a farily high-end machine, this serves to lock up the rest of the OS as well.
The fix for a user is to delete the file and set up their conex settings from scratch (While leaving thumbnails unchecked)
Potential solutions:
Edit: While I'm referencing an old firefox build that still used json to store settings instead of sqlite, the issue is still relevant IMO. A
SELECT COUNT(*) FROM object_data
on the storage file took quite a while, it's taking quite a lot of space, and it's probably got sensitive informationThe text was updated successfully, but these errors were encountered: