Live data from Hacker News

Viewing profile — fafhrd91

fafhrd91

HN member
Joined
Wed, May 16, 2012, 3:18 PM UTC
HN karma
334
Public activity
58 items

About fafhrd91

No profile information was provided.

Recent public activity

  1. comment
    Comment #25959690

    i am original author of pyo3. Yuri Selivanov (author of uvloop and edgedb) suggested pyo3 name.

  2. comment
    Comment #25959037

    name was chosen after `uranium trioxide`, pythonium trioxied - pyo3

  3. comment
    Comment #21963476

    You still need to initialize inner structures and buffers. Cache allows to avoid that.

  4. story
  5. comment
    Comment #20106630

    This is 1.0 bench

  6. comment
    Comment #20106241

    https://www.techempower.com/benchmarks/#section=test&runid=5...

  7. comment
    Comment #18596494

    We use actix at azure iot

  8. comment
    Comment #17199077

    one thread in best case. But process may die. Depends on panic

  9. comment
    Comment #17195634

    Actix provides actor abstraction over synchronous code and allows to communicate with it in async manner. TechEmpower benchmarks uses sync actors for db operations and http part is…

  10. comment
    Comment #17195437

    From repo activity Shio seems dead. And here is for gotham https://gotham.rs/blog/2018/05/31/the-state-of-gotham.html

  11. comment
    Comment #17192293

    i think from ergonomics standpoint, actix is very close to rocket. of course rocket has some advantage, but actix compiles on stable and has zero codegen code. as soon as proc macr…

  12. comment
    Comment #17191640

    first, you need to define what is crash in rust means. panic or error. in general case you can not recover from panic. in case of error, type system prevents unhanded errors in act…

  13. comment
    Comment #17191554

    we use actix. but that is all i can share :)

  14. comment
    Comment #17190785

    recent TechEmpower benchmarks results Citrine: https://www.techempower.com/benchmarks/#section=test&runid=6... Azure: https://www.techempower.com/benchmarks/#section=test&runid=b..…

  15. story
  16. story
  17. comment
    Comment #16941514

    I like how author writes! And previous post on web dev in rust is very good as well https://brandur.org/rust-web

  18. comment
    Comment #16837920

    a lot of has changed since 2015. scalable http/1, http2/, websockets libraries and frameworks are available. and with async/await async programming will be even simpler.

  19. comment
    Comment #16693089

    i'd say in most projects i worked, threads would be enough. but it is so boring :) new shiny async code is much more entertaining! on other hand we should talk about C100k or C1m p…

  20. comment
    Comment #16691366

    i just added extractors system. it is not released yet, i am planing to release it later this week https://actix.github.io/actix-web/actix_web/struct.Route.htm...

  21. comment
    Comment #16663949

    Writing good docs is hard for sure! Especially for developers, you just want to write cool code :) but take into an account lifetime of the projects, compared to python all of them…

  22. comment
    Comment #16524813

    I'd like to mention actix, it is an actor framework for Rust language. it is single process at the moment, but distributed version is in development. https://github.com/actix/actix…

  23. comment
    Comment #16488942

    Actix is number 7 in TechEmpower plaintext benchmark https://www.techempower.com/benchmarks/#section=data-r15&hw=...

  24. comment
    Comment #16488174

    Actix web is a small, pragmatic, extremely fast, web framework for Rust. * Supported HTTP/1.x and HTTP/2.0 protocols * Streaming and pipelining * Keep-alive and slow requests handl…

  25. story