-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Replace SQLite with PostgreSQL for server database to prevent concurrency issues #190
Closed
33 tasks done
Labels
⚡️ enhancement
New feature or request
Comments
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 21, 2024
lanedirt
added a commit
that referenced
this issue
Dec 22, 2024
lanedirt
added a commit
that referenced
this issue
Dec 22, 2024
lanedirt
added a commit
that referenced
this issue
Dec 22, 2024
lanedirt
added a commit
that referenced
this issue
Dec 22, 2024
lanedirt
added a commit
that referenced
this issue
Dec 22, 2024
lanedirt
added a commit
that referenced
this issue
Dec 22, 2024
lanedirt
added a commit
that referenced
this issue
Dec 22, 2024
lanedirt
added a commit
that referenced
this issue
Dec 23, 2024
lanedirt
added a commit
that referenced
this issue
Dec 23, 2024
lanedirt
added a commit
that referenced
this issue
Dec 23, 2024
lanedirt
added a commit
that referenced
this issue
Dec 23, 2024
lanedirt
added a commit
that referenced
this issue
Dec 23, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 25, 2024
lanedirt
added a commit
that referenced
this issue
Dec 26, 2024
lanedirt
added a commit
that referenced
this issue
Dec 26, 2024
lanedirt
added a commit
that referenced
this issue
Dec 28, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current SQLite implementation doesn't play well when concurrent requests are received by webapi. This can be tested by making the security settings page in client do parallel/concurrent requests.
Switching to a proper database provider should hopefully fix this.
Todo:
install.sh
where user can choose the dbprovider they want? Determine what will be the best way strategy going forward taking into account: self-hosting minimum memory required, stability, EF core migrations with SQLite limitations (e.g. TEXT fields vs. specific more optimized field types in postgresql). Being able to switch between SQLite and PostgreSQL... is this feasible at all to support both db engines? It's feasible... but what we see until now is that SQLite is not entirely stable for AliasVault's purposes, not even for local development. Check if we can make E2E tests work using PostgreSQL docker container?The text was updated successfully, but these errors were encountered: