Liste des Groupes | Revenir à cl c |
Fun fact: the Linux kernel (the world’s most successful software project),There are for sure a magnitude more C++ developers than C developers
originally entirely C-based, is now incorporating Rust-based development.
It never accepted C++.
I/O performance certainly is possible with Python, and it has the high-I thought about high performance code with >= 1e5 IOs/s.
performance production-quality frameworks to prove it.
Try it with something that has actual lexically-bound local variables inThat should be similar:
it:
def factory(count : int) :
def counter() :
nonlocal count
count += 1
return count
#end counter
#begin
return counter
#end factory
f1 = factory(3)
f2 = factory(30)
print(f1())
print(f2())
print(f1())
print(f2())
output:
4
31
5
32
With io_uring you can easily handle millions of I/Os with a single
thread, but not with Python.
Debunked above.That's not possible with Python because Python is slow.
Les messages affichés proviennent d'usenet.