Viewing profile — crimsonalucard1
crimsonalucard1
HN member- Joined
- Fri, May 15, 2020, 6:26 AM UTC
- HN karma
- -2
- Public activity
- 79 items
- HN profile
- View on Hacker News ↗
About crimsonalucard1
No profile information was provided.
Recent public activity
-
comment
Comment #23520792
Doesn't the net CO2 in the air increase? So you harvest CO2 to into fuel. That fuel is burned and the CO2 is released back into the air. So net difference is zero. But to harvest t…
-
comment
Comment #23520560
>If you say IO is the bottleneck, then you're claiming there is no significant difference between python and node. That's what a bottleneck means. This is my claim that this SHOULD…
-
comment
Comment #23519792
I'm hoping that other then treating diseases this thing can aid with enhancement.
-
comment
Comment #23519785
I think you need to pause before considering this route. Are you that exceptional? This level of intelligence is incredibly rare and unless you're 100% sure you're capable of this,…
-
comment
Comment #23519726
>Unless you've actually profiled the thing and shown where the time is used, all your assertions are nonsense. It's data science that is causing this data driven attitude to invade…
-
comment
Comment #23515033
>Well, it's odd that you say that, when previously you were claiming that it was caused by Python. Is it caused by Python, or is Python negligible? It's not odd. Think harder. I'm …
-
comment
Comment #23514699
> I just think that your comparison with _node.js_ when there are a bunch of confounding variables is nonsense And I'm saying all those confounding variables you're talking about a…
-
comment
Comment #23514654
>Your logic makes perfect sense, in a world where I/O bound processes, JIT versus interpretation differences, garbage collection versus reference counting differences, etc., don't …
-
comment
Comment #23513958
Except the problem here is that those tests were bottlenecked by IO. Whether you're testing C++, pypy, libuv, or whatever it doesn't matter. All that matters is the concurrency mod…
-
comment
Comment #23510468
As a general rule it works. Work friends are not friends. There are exceptions but don't expect anything.
-
comment
Comment #23510440
Except IO is the bottleneck here. The concurrency model for IO should determine overall speed. If python async is slower for IO tasks then sync then that IS an unexpected result an…
-
comment
Comment #23510328
When I talk about async await I'm talking about everything that encompasses supporting that syntax. This includes the I/O event loop. So really we're in agreement. You're talking a…
-
comment
Comment #23509148
Bottleneck is IO. Concurrency model should be the limiting factor here. NodeJS is faster than flask because of the concurrency model and NOT because of the JIT. The python async im…
-
comment
Comment #23509116
NodeJS primitives are enough to produce the same functionality as flask without the need for an extra framework.
-
comment
Comment #23509098
Right but this test focused on concurrent IO. The bottleneck is not the interpreter but the concurrency model. It doesn't matter if you coded it in C++, the JIT shouldn't even be a…
-
comment
Comment #23506449
The database is the bottleneck. JIT or even C++ shouldn't even be a factor here. Something is wrong with the python implimentation of async await.
-
comment
Comment #23506444
Yep and this test being shown is actually saying that about 5 sync workers acting on thousands of requests is faster then python async workers. Theoretically it makes no sense. A T…
-
comment
Comment #23506417
>And no I'm not interested in whatever benchmark you're going to want to post, That's rude. Let's put it this way. NodeJS and nginx leveled the playing field. It destroyed the lamp…
-
comment
Comment #23500041
No man. Nodejs will beat the flask benchmark. For this specific test there is no downside to async. What’s going on here is python specific.
-
comment
Comment #23499985
This is not what is happening with flask/uwsgi. There is a fixed number of threads and processes with flask. The threads are only parallel for io and the processes are parallel alw…
-
comment
Comment #23499964
Yeah except nodejs will beat flask in this same exact benchmark. Explain that.
- comment
-
comment
Comment #23499892
I see this elitist attitude all over the internet. First it was people saying “Guys why are you over reacting to corona the flu is worse.” Then it was people saying “Guys, stop buy…
-
comment
Comment #23495900
Dynamic code upgrades? Can you explain what that is and why a type system will prevent that from happening?
-
comment
Comment #23492215
Yeah but usually that's not the case. Usually you can get it back. I would say more often than not it's reversible.