-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Q] In what format and where are the indices stored? #78
Comments
Possibly related to #62 |
I had a look into the extension's source: It's stored inside web extensions This is all pretty clever and a reasonable implementation imo. I'm not sure what better way there could be using web extensions (that support FTS) - the only thing I could think of is a WASM SQlite module. |
Thanks for figuring it out! I did not know extensions had a separate "inspect" area when debugging them. More here for newbies, though it seems like it still has no easy export/import functionality in the browser.
There are clever data structures like inverted indices, which grow with vocabulary (which has a limit) and not the amount of text on pages you visit. But the number of URLs still keeps growing. |
Adding this info to the readme can be helpful.
The text was updated successfully, but these errors were encountered: