-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Support SQLite as a database #80
Comments
Actually i wanted to support SQLite for small setups and testings but sadly it doesn't support Reference https://www2.sqlite.org/cvstrac/wiki?p=UnsupportedSql
|
Maybe we can switch to ecto locks https://hexdocs.pm/ecto/Ecto.Changeset.html#optimistic_lock/3. Not sure if it fits as replacement or not. it does fetch a version and update with that version so other update requests will fail if they try to update since they use stale version. |
We can use https://github.com/whitfin/sleeplocks to replace the db based locks. I will test this in a different project and if it works as expected, i will add it to lynx. |
Is your feature request related to a problem? Please describe.
Add support for sqlite using
ecto_sqlite3
https://github.com/elixir-sqlite/ecto_sqlite3The text was updated successfully, but these errors were encountered: