ShaddyDC
ShaddyDC
Potentially related are #1099 and #709. I made a simple implementation that suffices for my use case, but I'm new to nom, and there's certainly better ways to do it....
> Any plans to take other 3d-formats and export to glTF? (perhaps even visa-versa) > > My use case is that I would like to serve .stp, .stl and .3mf...
Some of that is mentioned in #145
It's a good idea I hadn't considered. Using `join_all` from the `futures` crate like this: ```rust futures::future::join_all( (0..ITERATIONS) .map(|_| nums.add(&obj, None)) .collect::(), ) .await .into_iter() .collect::() .unwrap(); ``` I get...
Hmm, I've tried to do it like this, and it finishes pretty much instantly and leaves the database empty, so it doesn't seem to work. ```rust (0..ITERATIONS).for_each(|_| { nums.add(&obj, None);...