Could gix_object::Find
be async?
#1388
-
Summary 💡Make the Motivation 🔦I've been playing around with using gitoxide to build a git server backed by SQL. I'm resolving packfiles using I'm down to contribute a PR if you're open to that! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
For something to be
This is simply not true unless the operation is performed in a thread, something you can do with Due to that, the non-transport parts won't ever be |
Beta Was this translation helpful? Give feedback.
For something to be
async
, it must satisfy certain conditions like:This is simply not true unless the operation is performed in a thread, something you can do with
tokio::spawn_blocking()
for instance.Due to that, the non-transport parts won't ever be
async
- it would be a lie.