-
Notifications
You must be signed in to change notification settings - Fork 25
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
Adds Doobie Stream handling to the README #35
Comments
Yes, tranzactio has a feature for this. In the Doobie package, you have a I'll add this to the README. |
Oh I knew about Whereas in Doobie (w/ using |
Ah OK, I get your point. Unfortunately, I'm not too familiar with ZIO streams, and in the sample streaming application I converted the stream to a ZIO before applying the Database. I'll try to take a look at this, but I welcome any PR on the subject. |
Doobie has support for transacting a fs2 stream. For ex: I can convert a
Stream[ConnectionIO, A]
into aStream[IO, A]
( see doobie-final-streaming )Does tranzactio provide similar functionality? If not, how would you simulate this?
The text was updated successfully, but these errors were encountered: