Performance and Async calls

We are using C# (.NET). We are maintaining weekly collection for store the documents. We have couple of billion documents per collection. I tested sync (CRUD) method is faster than async method. Should we use sync method since it has better performance over async method? What’s the recommendation and why?