Any database recommendations for something that wo...
# arrow
r
Any database recommendations for something that would work well with Arrow?
p
Anything that uses suspend works well with 0.10.X
r
Sure, but do any examples come to mind?
p
Not from me, no
@Jorge Castillo?
j
I don't have any persistence sample yet sorry, maybe @simon.vergauwen?
but as Paco said, if you've got
suspend
support that would work seamlessly, otherwise any db can work easily with Arrow as long as you wrap the effect (db access) into
IO
or a
suspend
function (in case you're using ArrowFx)
☝️ 1
s
That’s pretty much what I do using SqlDelight and same for Retrofit with
suspend
.
Here is a nice example of DB usage