Skip to content
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

SQLite driver #433

Open
dkotik opened this issue Apr 13, 2024 · 1 comment
Open

SQLite driver #433

dkotik opened this issue Apr 13, 2024 · 1 comment

Comments

@dkotik
Copy link
Contributor

dkotik commented Apr 13, 2024

@roblaszczak, @m110 I hope to contribute an SQLite driver some time this summer. I am opening this issue to collect ideas and to hear suggestions from you and the community. Two questions to kick off:

  1. I noticed that all the drivers are in separate repositories, and I find it a bit odd as opposed to keeping them together in the same repo with their own go.mod file. Another project wouldn't be able to use them as they are too specific. Nonetheless, how would like me to go about implementation? Follow the same pattern?
  2. I enjoy working with https://github.com/zombiezen/go-sqlite driver. It does not use the standard library sql interfaces and carries SQLite-specific benefits because of it. Also no CGO. Is it ok if I use it for watermill implementation at least initially? I can do an additional standard lib-compatible one later - it should not be hard to re-implement once it is done.
@roblaszczak
Copy link
Member

@roblaszczak, @m110 I hope to contribute an SQLite driver some time this summer. I am opening this issue to collect ideas and to hear suggestions from you and the community. Two questions to kick off:

  1. I noticed that all the drivers are in separate repositories, and I find it a bit odd as opposed to keeping them together in the same repo with their own go.mod file. Another project wouldn't be able to use them as they are too specific. Nonetheless, how would like me to go about implementation? Follow the same pattern?

I remember discussing with someone who is all "drivers" in one repo in a similar project, and it's a pain 😅
It kinda works now when all drivers are separate, so we'll prefer not to make a precedence.

It's a good question if it should be in https://github.com/ThreeDotsLabs/watermill-sql repo or a separate one - we would need to consider tradeoffs.

  1. I enjoy working with https://github.com/zombiezen/go-sqlite driver. It does not use the standard library sql interfaces and carries SQLite-specific benefits because of it. Also no CGO. Is it ok if I use it for watermill implementation at least initially? I can do an additional standard lib-compatible one later - it should not be hard to re-implement once it is done.

@m110 pointed me to https://github.com/walterwanderley/watermill-sqlite - you may take a look at it as a reference, but as far as I understand, it depends on a driver that depends on CGO?

So https://github.com/zombiezen/go-sqlite sounds like a nice alternative! It would be just perfect to not expose details of that library anywhere - so we could eventually swap the driver in the future if possible.

I'm not sure if you know this link, but it could be useful for you: https://watermill.io/docs/pub-sub-implementing/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants