Hi,
I want to use sqlite with vibe.d but I'm aware of it blocking the fiber with its IO ops.
What is the recomended way to use it then? I've read that DB drivers need to be written in the async way using vibe.d's TcpConnection and FileStream, but what to do with sqlite's C API where this is handled internally?

Make some working threads out of main fiber thread and use them to access the DB? What is then the preffered way to exchange the data with less possible overhead?

Thx,
Tom