Viewing profile — fafhrd91
fafhrd91
HN member- Joined
- Wed, May 16, 2012, 3:18 PM UTC
- HN karma
- 334
- Public activity
- 58 items
- HN profile
- View on Hacker News ↗
About fafhrd91
No profile information was provided.
Recent public activity
-
comment
Comment #25959690
i am original author of pyo3. Yuri Selivanov (author of uvloop and edgedb) suggested pyo3 name.
-
comment
Comment #25959037
name was chosen after `uranium trioxide`, pythonium trioxied - pyo3
-
comment
Comment #21963476
You still need to initialize inner structures and buffers. Cache allows to avoid that.
- story
-
comment
Comment #20106630
This is 1.0 bench
-
comment
Comment #20106241
https://www.techempower.com/benchmarks/#section=test&runid=5...
-
comment
Comment #18596494
We use actix at azure iot
-
comment
Comment #17199077
one thread in best case. But process may die. Depends on panic
-
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…
-
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
-
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…
-
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…
-
comment
Comment #17191554
we use actix. but that is all i can share :)
-
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..…
- story
- story
-
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
-
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.
-
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…
-
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...
-
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…
-
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…
-
comment
Comment #16488942
Actix is number 7 in TechEmpower plaintext benchmark https://www.techempower.com/benchmarks/#section=data-r15&hw=...
-
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…
- story