Project Syn - Simon Gerber - Rust Zürisee March 2024

Поділитися
Вставка
  • Опубліковано 14 жов 2024

КОМЕНТАРІ • 5

  • @w300x
    @w300x 7 місяців тому +1

    I haven't finished the talk yet but PyO3 was the best thing to happen to me.
    I reimplemented a huge amount of my python code in Rust with it and gained enormous performance benefits, though it was hard to get the async to work well.

  • @jamiecha
    @jamiecha 7 місяців тому

    Thanks for sharing a great experience which is working in a real world !

  • @jocketf3083
    @jocketf3083 7 місяців тому

    Nice! Seems like a great use-case.

  • @earx23
    @earx23 7 місяців тому

    I liked pyo3, but it added 10 seconds to the build. Maturin seemed like clutter to me. In the end I replaced all our python code with rust. OK that was only 13kloc.

  • @awnion
    @awnion 7 місяців тому

    The exposed API should be Pythonic, not Rustonic.
    E.g. as_dict() should be called implicitly on e.g. get(key) call.