Asynchronous writes

How does the go client handle writes is it async or sync. if it supports both how do we specify it?

Go’s io is async underneath, so you don’t need to do anything.

You get best of both worlds: To you it looks sync, while behind the scene it is async.