Sanskar Jethi
Sanskar Jethi
e.g. here, we have to acquire gil everytime when we call the function below: ``` pyo3_asyncio::tokio::into_coroutine(py, async move { let contents = fs::read(file_name.clone()).await.unwrap(); let foo = String::from_utf8_lossy(&contents); Ok(Python::with_gil(|py| { let...
@awestlake87 , I think I may have miscommunicated by what I meant by "slowly". I meant it was performing slower than the synchronous counterpart, i.e. `fs` crate. Here are the...
> then the buffer could potentially be reused instead of cloned which might make things faster. Thank you for the explanation @awestlake87 . Which buffer are you talking about ?
@lambdalisue , but using an ssh-key should work, right?
Try adding a documentation walkthrough(maybe an interactive TUI) when someone would run `python robyn`.
Hi @jordangarside , I just saw these projects. I will definitely have a look the comparison. Thank you! :D
Hi @jordangarside , I tried installing these projects on my machine but I was unable to get them up and running. I remember trying with 3.10 and 3.9 for sure...
Thanks @jordangarside . I will give it a go :D
Hi @klaa97 , Sorry for the late revert( I was travelling back from vacation) and thank you for the great suggestions! 😄 > Response customization More docs / customization on...
> but there should be no performance drawbacks apart from a small one during server startup: you build the OpenAPI YAML only once from the routes you define, and then...