Тёмный

Go IS Slower Than PHP | Prime Reacts 

ThePrimeTime
Подписаться 589 тыс.
Просмотров 81 тыс.
50% 1

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 255   
@keenoogodlike
@keenoogodlike 11 месяцев назад
Mojo claim to be 35,000 times faster than Python -​> C is 80 times faster than Python -​> Mojo 437.5 times faster than C -​> Mojo faster than machine code
@FlanPoirot
@FlanPoirot 11 месяцев назад
mojo highjacks the fundamentals of physics by giving electrons monster energy, making them able to speed up how much clock cycles they can do per second without heating up as much. it's complicated you wouldn't get it. Meanwhile C and C++ instead of using hydrolyctic electron excitation, they're still just generating raw instructions... so arcane... sigh
@Hebruwu
@Hebruwu 11 месяцев назад
I think it’s based of the fact that mojo is capable of utilizing parallel hardware like GPUs and TPUs for certain tasks. I suppose it’s similar to claiming that CUDA/OpenCl are faster than C
@TheWrapperup
@TheWrapperup 11 месяцев назад
me when mojo for loop be 50x slower than c
@krtirtho
@krtirtho 11 месяцев назад
I think optimized C is 45,000 times faster than anyform of Python
@melodyogonna
@melodyogonna 11 месяцев назад
It is, for that specific test case.
@multiwebinc
@multiwebinc 11 месяцев назад
Even if the benchmark might not be accurate when comparing to other languages, you have to admit that making a PHP script go from 630 requests/sec to nearly 30k requests/sec is a massive improvement.
@dimitris470
@dimitris470 11 месяцев назад
The baseline PHP test was done with the internal server which is meant for quick and dirty testing/dev, not production. PHP-FPM is far faster than that, especially if configured properly for production
@yungifez
@yungifez 11 месяцев назад
True The benchmark has a lot of flaws
@filomontani8683
@filomontani8683 11 месяцев назад
And autoloading, JIT, Opcache configuration. Besides, frankenphp 1.0 was released a few days ago, would be interesting to try it.
@notlekrut
@notlekrut 11 месяцев назад
But... but it's fun to make fun of PHP. Yeah, there's far too many people that just don't know better.
@neptronix
@neptronix 11 месяцев назад
That's always the case with PHP tests isn't it, they basically rig them. Techempower composite score is the only score i trust.
@binaryfire
@binaryfire 11 месяцев назад
⁠@@neptronixSwoole sits at no. 33 on the latest Techempower composite scores. There’s nothing rigged about it. It’s very, very fast. Frameworks like Hyperf that are built around it can handle way more requests/sec than Node.
@ANONAAAAAAAAA
@ANONAAAAAAAAA 11 месяцев назад
I'm pretty sure databases are the main bottlenecks and the source of troubles for 99% of backend applications. Juniors who have no experience of tackling serious performance issues in backend systems, tend to like this kind of discussions.
@ANONAAAAAAAAA
@ANONAAAAAAAAA 11 месяцев назад
And the most important thing to build performant backend systems is, monitoring or utilizing APMs like DataDog and NewRelic.
@alexaneals8194
@alexaneals8194 11 месяцев назад
For a lot of companies, poor database design and maintenance is a major issue. I was brought in to one company and I asked if there were any DBAs and was told we used to have DBAs, but not now. The dev database server was running out of disk space so a ticket was put in to double the diskspace. I looked a the database and just ran a script to shrink the logs and recovered 75% of the existing disk space. I am not a DBA, but as a database developer I have had to perform more DBA tasks in the last few years because companies decided they didn't need DBAs they had full stack engineers.
@vigilantezack
@vigilantezack 7 месяцев назад
Maybe, but wouldn't HDD be worse still? A lot of fat frameworks and CMSes and PHP projects not optimized/compiled/cached/whatever, have a ton of file reads, which would be much slower than DB.
@robertwong-w5s
@robertwong-w5s Месяц назад
@@alexaneals8194 Great insight of engineering! Thanks for sharing.
@Hobbitstomper
@Hobbitstomper 11 месяцев назад
I've been using PHP since 2002. I've seen the good, the bad and the ugly. In recent years I started seeing PHP going from ugly, to bad, to good, to great.
@Hobbitstomper
@Hobbitstomper 11 месяцев назад
Still, in the long run I am hoping for Rust/WASM to be able to have full access to the browsers DOM without the need for JavaScript. That would change everything.
@HT-hj5jp
@HT-hj5jp 11 месяцев назад
True. PHP truly evolves in a way that boosts businesses a lot. Now, you can do anything in PHP except low-level stuff, but for low-level, you choose C or Rust.
@agustingomez7172
@agustingomez7172 5 месяцев назад
Yea me too, but is really impossible to be faster than go. It really improved the performance no doubt, but not that way.
@lemeshenko
@lemeshenko 26 дней назад
​@@agustingomez7172php is basicly C. Why c can not ve faster then go?
@holonaut
@holonaut 23 дня назад
Except that 90% of PHP devs are stuck in their ways of writing overly dynamic code without any type declarations. Even when working in something as critical as a billing application
@David-ng9qh
@David-ng9qh 11 месяцев назад
I've been making my own framework with OpenSwoole for a while. I can confirm, it is faster than Bun and while I haven't tested Go, it can't be that much slower. Although you have to take into consideration that Go is compiled, and this speed is only in a vacuum. Once you start building out ALL the rest of the application Go will, of course, be faster. On top of that, the OpenSwoole library is not actually PHP. It's an extension, written in C++.
@z3ntl3wip
@z3ntl3wip 2 месяца назад
I had a record of 600k RQPS with Go, on TechEmpower I can clearly see fasthttp of Go having 350K RQPS on DB Query while Swoole has 300k
@thingsiplay
@thingsiplay 11 месяцев назад
Python is faster than Rust.
@ilu1994
@ilu1994 11 месяцев назад
PHPs integrated server (the first benchmark) is a development server. It doesn't even use multiple workers by default. It's not meant to be used in production. Of course, the second benchmark is also inaccurate because it benchmarks OpenSwole and PHPs JSON implementation which are both written in C, not PHP.
@mvargasmoran
@mvargasmoran 11 месяцев назад
same thing happens to a lot of langs, Python always tries to be as fast as C, by using libs written in C. Is a common thing to do.
@iojourny
@iojourny 11 месяцев назад
@@mvargasmoran Basically all high level languages reach those benchmarks by using low-level libraries under the hood.
@LightTheMars
@LightTheMars 11 месяцев назад
You'll be surprised to know that most of Node's runtime is also written in C++.
@zebraforceone
@zebraforceone 11 месяцев назад
I mean PHP is essentially bindings for C and it's libraries. It's always been capable of being fastafbois. You'd obviously never use a PHP based JSON parser in PHP when you can use the native functions to hand that work to C. I think this is a more realistic benchmark than say, arithmetic in a tight loop.
@oleksiistri8429
@oleksiistri8429 11 месяцев назад
fare/unfare, lol, who cares ? you can do it faster. period. and that most high level langs use C/C++ under the hood (including JS) everybody has already told you above.
@2JulioHD
@2JulioHD 11 месяцев назад
Funny how the base compare is with a PHP development server (which should never be used in prod), would like to see how PHP-FPM or the apache module performs, not a dev server.
@aragnophy
@aragnophy 3 месяца назад
Apache mod is dead, nobody uses it these days
@2JulioHD
@2JulioHD 3 месяца назад
@@aragnophy Haha, good one. I think noone should use it anymore, but I definitely saw it being used in prod. Nobody is stopping one from setting it up today with modern PHP, so I think enough ppl will still set it up, even though they should use php-fpm instead.
@pashamoney
@pashamoney 11 месяцев назад
Enough GO. It's time for PHP, again.
@oleksiistri8429
@oleksiistri8429 11 месяцев назад
PHPagen
@tokiomutex4148
@tokiomutex4148 11 месяцев назад
go PHP()
@aschmelyun
@aschmelyun 11 месяцев назад
Hey, that’s my video! Appreciate the dig through it, lot of valid points in those comments. If you’re ever in the mood to dig into PHP sometime, let me know! 😂
@Andressuquaz156
@Andressuquaz156 11 месяцев назад
Virgin rustard developer vs chad swoole PHP expert
@MickDavies
@MickDavies 11 месяцев назад
Blazingly fast! Laravel Octane just wraps the PHP Laravel up inside of a go routine and keeps it all in memory. Pretty cool advancement, PHP lives to fight another day.
@mvargasmoran
@mvargasmoran 11 месяцев назад
PHP is king. No doubt about it.
@enkiimuto1041
@enkiimuto1041 11 месяцев назад
"PHP is faster than Go!" "Cool! How did you do it?" "...Wrapped it in go..."
@DaviMartins99
@DaviMartins99 11 месяцев назад
That's true if you use Roadrunner, if you use Swoole it's just PHP. Nonetheless it's a great alternative if you need the extra performance.
@HT-hj5jp
@HT-hj5jp 11 месяцев назад
​@@enkiimuto1041 Dude, do you understand that power to use powers of other powers? That basically neglects the need for the usage of any other language except if you want to go low-level. You have amazing developer experience, and all stuff is ready in PHP/Laravel & PHP can use extensions like Swoole or Parallel or even use Go capabilities while Go can't use the capabilities of PHP!
@robertwong-w5s
@robertwong-w5s Месяц назад
@@HT-hj5jp it is wise to think so. Fast developement with PHP, and fast speed with extensions in c/c++/go. Best dev expereince and top performance, why not?
@Kane0123
@Kane0123 11 месяцев назад
At some point someone will write code so fast it’ll break the laws of physics and we’ll collapse into a black hole…
@Me-vc4sf
@Me-vc4sf 6 месяцев назад
I'm looking forward
@minor12828
@minor12828 11 месяцев назад
PHP is a great language. Just let it be.
@akarin-desu
@akarin-desu 11 месяцев назад
the php guy's voice reminds me of a mix of "DailyDoseOfInternet" and "Fireship"
@geoblk3000
@geoblk3000 11 месяцев назад
10 lines of code benchmarks are like looking through a keyhole and trying to figure out the room's size.
@electricshmoo
@electricshmoo 10 месяцев назад
I love OpenSwoole - finally PSR-7 compliant as well now. PHP and Go are similar in that they compile extra fast. PHP, Java, and .Net are similar in that there is a virtual machine running translated bytecode.
@yungifez
@yungifez 11 месяцев назад
Php devs can't take a break 😂😂😂 All the mockery
@PabloGnesutta
@PabloGnesutta 11 месяцев назад
Excuse my ignorance but, if I understand correctly, prime is saying that the benchmark is misleading or something like that. Why? Aren't the go and php programs doing the same but one simply handles more RPS thsn the other?
@nodidog
@nodidog 11 месяцев назад
Goroutines use parallelism if you have multiple cores available
@matteac_rs
@matteac_rs 11 месяцев назад
The first php exmaple is using a dev server (not meant to be performant). OpenSwoole is written in C, so it isnt actual php. The NodeJS example uses express, one of the slowest libraries, and the with Golang example I dont have idea, but it seems like a bad implementation or some weird scenario And the most important thing is that he ran the benchmarks locally with an unknown version of php, an unknown version of nodejs, an unknown version of go and an unknown ENVIRONMENT A lot of things could go wild testing locally
@forevernoob97
@forevernoob97 10 месяцев назад
@@matteac_rs "OpenSwoole is written in C, so isn't actual php". I'm sorry but this is just nonsense. Even go is written in C.
@matteac_rs
@matteac_rs 10 месяцев назад
@@forevernoob97 and JavaScript is C++
@psychechip
@psychechip 6 месяцев назад
@@forevernoob97Go is not written in C. Go compiles directly to machine code.
@legends_assemble4938
@legends_assemble4938 11 месяцев назад
Never used PHP, but its absurd that it is faster than GO(I have seen it being faster than rust in some edge cases)... Even the most unoptimzed code should outperform majority of the interpreted languages.
@LtdJorge
@LtdJorge 11 месяцев назад
PHP has a JIT, but even then Go is still vastly superior
@AllanSavolainen
@AllanSavolainen 11 месяцев назад
@@LtdJorge Isn't Go typed, thus vastly inferior to PHP?
@ea_naseer
@ea_naseer 11 месяцев назад
​@@AllanSavolainenwe have type hinting in php 8 and you can enforce types at run time
@masterchief1520
@masterchief1520 11 месяцев назад
​@@AllanSavolainentypes are inferior? 😂
@AllanSavolainen
@AllanSavolainen 11 месяцев назад
@@ea_naseer yeah, fortunately they are optional, thus not making PHP inferior :)
@mdbk2
@mdbk2 11 месяцев назад
tl;dw; If your PHP application uses an HTTP server written in C/C++ and doing nothing except calling two functions written in C then PHP is faster than GO :D
@snowman1185-v
@snowman1185-v 11 месяцев назад
Love the consistent quality content Prime Time. :) Thx
@patricknelson
@patricknelson 11 месяцев назад
I’ve tried Swoole but I’m not sure if it’s production ready per se, but it’s an exciting direction for PHP. Definitely requires you to think differently and carefully about how you architect your PHP app since it is contrary to the traditional model of the short lived lifecycle (where everything starts fresh and gets discarded at end of request). It is very interesting, though.
@LukeCreates
@LukeCreates 3 месяца назад
We use Swoole in production and have been for quite awhile now on an API that serves 500 -> 2000 heavy, requests per second. Took a little bit of configuration, and it is important to understand that your app will live in memory, but it’s been wonderful.
@ondrejmarek1980
@ondrejmarek1980 11 месяцев назад
did i just.. witness a birth of a supervillain?
@nicolascarrez3409
@nicolascarrez3409 11 месяцев назад
The problem is that PHP is synchronous by default. On the contrary JS & Go are asynchronous by default. So all the libraries of JS and Go will natively support asynchronous code, but for each PHP I/O lib you will have to find an up-to-date version of this library supporting asynchronous code which is not necessarily easy (same problem than python async apps).
@henrywooddk
@henrywooddk 4 месяца назад
Swoole/OpenSwoole hooks into all synchronous I/O functions of PHP and makes them asynchronous automatically - This means that the code still looks synchronous (except the fact that the synchronous code is wrapped in coroutines). OpenSwoole/Swoole does the same for most PHP extensions
@NickByers-og9cx
@NickByers-og9cx 11 месяцев назад
Actually, JavaScript is faster than digital circuits using the timewarp library.
@EdwinMartin
@EdwinMartin 11 месяцев назад
Does he really not know what PM2 is? It's almost mandatory for running a Nodejs server!
@complexity5545
@complexity5545 11 месяцев назад
Most of use bare metal senior guys don't use node as web apps. We only use nodejs for the css and js development. I didn't know about pm2. I would use a top, htop, [-SIG trap], daemon tools, and other unix scripts instead of a process manager. [ pm2 ] reminds me of what J2EE used to do and that experience was horrible. I guess I learn something everyday.
@EdwinMartin
@EdwinMartin 11 месяцев назад
@@complexity5545 In that case, PM2 is what you want 😉 It makes Nodejs just like any other unix server and feels natural in such an environment.
@z3ntl3wip
@z3ntl3wip Месяц назад
Mandatory? It's slow and has overhead. Every sysadmin uses systemctl and with the case for node runtime, they cluster their backend.
@oscarljimenez5717
@oscarljimenez5717 11 месяцев назад
Are you sure that's the fastest Bun? Have you tried Elysiajs? I don't know i expected Bun more closed to Go.
@ParanoidxProd
@ParanoidxProd 11 месяцев назад
We want the Gaslight-agen
@dungeonmir
@dungeonmir 11 месяцев назад
Actually, php is fast enough...
@yungifez
@yungifez 11 месяцев назад
Aaron Francis
@GreyDeathVaccine
@GreyDeathVaccine 11 месяцев назад
Never trust benchmarks you haven't fabricated yourself (don't remember the author).
@steves9250
@steves9250 11 месяцев назад
“Dude do you even bench….mark?”
@stuff9282
@stuff9282 11 месяцев назад
The issue with "async PHP" is that once you use it, you throw out all native PHP functions that do IO. Also i would be interested to see a deeper comparison what is actually done in the async PHP runtime. Does it handle all sorts of issues with encoding and unicode? As a default its most likely just dumping bytes and not doing much else. Every time i did run some stringly benchmarks with PHP perf dropped drastically when you did unicode (what most other languages do as a default)
@henrywooddk
@henrywooddk 4 месяца назад
Swoole/OpenSwoole hooks into all the *EXISTING* I/O functions of PHP making them asynchronous
@neptronix
@neptronix 11 месяцев назад
That's because PHP is usually benchmarked using apache or nginx, in the case what the benchmark is measuring is the overhead of apache or nginx more than it's measuring PHP. When you run node.js out through apache/nginx, it's really, really slow in a similar condition.
@AllanSavolainen
@AllanSavolainen 11 месяцев назад
PHP is fast enough for most use cases. Just don't use any frameworks (or ORMs). Decade ago I helped to rewrite a video rental service. Original one was done with PHP + some popular framework at the time and managed to handle 20 users/s. We implemented the service as pure PHP without ORM and managed to get 2000-3000 users/s on the same hardware. We did also test node.js implementation and it was twice as fast, but customer didn't want to go with that as PHP devs were so much cheaper and easier to find than node devs. Today they would probably want it to be implemented with Java and Spring Boot, ugh. Still that would make more sense than use node :)
@neptronix
@neptronix 11 месяцев назад
I'm working on a computationally hyperefficient framework for PHP and we notice that laravel and symfony are 5x slower at almost everything. Yeah a chunky framework is a huge tax on PHP, raw PHP is really fast considering it's a dynamic typed language.
@AllanSavolainen
@AllanSavolainen 11 месяцев назад
@@neptronix Yep, PHP is fast enough for most use cases. Just don't use ORM, but you shouldn't be using ORM with any language.
@mdbk2
@mdbk2 11 месяцев назад
It is. But why would you want to use PHP, which is still slower than something else and not necessarily harder to use? Also, PHP consumes a lot of memory per request and actually that's a bigger issue.
@neptronix
@neptronix 11 месяцев назад
@@AllanSavolainen Yep, i run an extremely lightweight stack that's about 5x faster than laravel, i'm with you on not being a bloat enjoyer
@neptronix
@neptronix 11 месяцев назад
​@@mdbk2 I use it because: 1) It's extremely fast. 3 times faster than node when used with openswoole ( source: techempower composite benchmarks ). This is amazing considering it's a simplified and dynamic typed language. This is because it's a thinner layer on top of C than most languages are today. 2) It's extremely quick to work in because it simplifies coding... at the same time it doesn't limit you to do crazy shit if needed. Best of both worlds. 3) Other languages are more of a pain in the ass due to lower convenience + longer code, or are a tad easier but dramatically slower ( meaning you will spend more time optimizing and go negative on your productivity gains ), PHP hits a great sweet spot for me of short code and fast code. 4) Much like Rasmus Lerdorf himself, i am simply an impatient programmer. My PHP scripts take less than a megabyte per instantiation on average, i personally don't feel like that is too much.
@ddruganov
@ddruganov 11 месяцев назад
@2:55 45k req/s on what hardware exactly? lmao
@semyaza555
@semyaza555 11 месяцев назад
Openswoole making concurrency gains 💪
@simple_classic
@simple_classic 3 месяца назад
I mean any language under proper language runtimes becomes got. I don't know you want to code it in Rust?
@issussov
@issussov 11 месяцев назад
Go to a company and ask for money, else benchmark their products? :D
@Meleeman011
@Meleeman011 11 месяцев назад
it seems primagen has finally become the villain
@chakier
@chakier 11 месяцев назад
OMG PHP is the king of the hill now. Again!
@rollin340
@rollin340 11 месяцев назад
Everything aside, we can at least agree that that is a pretty cool module name. lol
@youtup69420
@youtup69420 11 месяцев назад
The-swole-agen brings me happiness every time I watch his vids. Thank you Prime
@jorge.barcelos
@jorge.barcelos 11 месяцев назад
Open Swole Bro, PHP Bench 🏋
@Beastintheomlet
@Beastintheomlet 7 месяцев назад
I am 100% on board with you making click bait misinformation shorts as long as you do it under the name “The Crimagen”. You don’t harm your actual reputation that way and it’s a good name for parody content.
@7heMech
@7heMech 11 месяцев назад
PHP is faster than Assembly.
@SyncMasterXD
@SyncMasterXD 11 месяцев назад
Netflix stock go brrr
@Marxone
@Marxone 11 месяцев назад
Lambo awaits you ... but without the await crap
@Dev-Siri
@Dev-Siri 11 месяцев назад
we need a benchmark with fasthttp
@GabrielGamesYTG
@GabrielGamesYTG 11 месяцев назад
Im missing 20min videos for me to eat breakfast watching hehe
@jorismak
@jorismak 11 месяцев назад
Lol. I commented some things that massively improved php performance the last years , so much that it can be found at the top of (framework) benchmarks _sometimes_, while also agreeing that this benchmark was done wrong and go is surely sister , agreeing with the response of this video . And it got marked as spam and removed ?
@HT-hj5jp
@HT-hj5jp 11 месяцев назад
Mooooar PHP, please! Test krakjoe/parallel extension for multithreading!
@stilldreamy5181
@stilldreamy5181 11 месяцев назад
I don't get why it was slow without Swoole and way faster with it. What server were they using with php before using it with Swoole? Yes, php is blocking, but I thought that didn't matter because, well it's not like you typically run a server implemented in blocking php. Instead you use Apache or something and it just launches more php instances as needed, or something like that (I'm probably wrong about this part...)
@mdbk2
@mdbk2 11 месяцев назад
Because without Swoole, PHP executes the entire script from scratch with each request. With Swoole it works more like a Node or Go server, where only the handler is executed, but the rest of the application remains in memory.
@pianochess1882
@pianochess1882 11 месяцев назад
The first example didn’t use a real web server, but phps built in dev server, which can’t handle multiple requests at a time. They should have used Apache or nginx+ php-fpm
@stilldreamy5181
@stilldreamy5181 11 месяцев назад
@@mdbk2 yeah but if the server is then just your php process long running, yes there are some opportunities for optimization there, but I am not convinced these numbers mean anything at all unless you compare with a typical server used with php. There could also be some speed advantage to just giving each request its own blocking php process.
@Skinface1000
@Skinface1000 11 месяцев назад
I just miss the streams, so sadge...
@catcatcatcatcatcatcatcatcatca
@catcatcatcatcatcatcatcatcatca 11 месяцев назад
LLVM is faster than my CPU
@arunabraham9382
@arunabraham9382 6 месяцев назад
Guess what Appwrite backend is in Swoole
@russelllapua4904
@russelllapua4904 11 месяцев назад
Prime's voice sounds like a mix between Bill Burr and Gru.
@patiencebear
@patiencebear 11 месяцев назад
3:19 - every tech blogger ever
@crimsonbit
@crimsonbit 11 месяцев назад
This got me wondering, what if you compile Go to C with CGO?
@miguelborges7913
@miguelborges7913 11 месяцев назад
Is the repo of the source code of the benchmarks public?
@2mbst1
@2mbst1 11 месяцев назад
You should release shorts where each short contradicts another using bad benchmarks. "RUST slower than NODE?!" and the inverse, "PYTHON FASTER THAN C?!" etc
@aprilmintacpineda2713
@aprilmintacpineda2713 11 месяцев назад
The Prime reading my comment is sooooo satisfying. Gotta add that to my resume.
@chakier
@chakier 11 месяцев назад
What I sure exactly know PHP is much more faster and comfortable in time parsing then GO. Don't believe me? Try to do time.Parse() fast and correct in GO!
@Samurai-Kit
@Samurai-Kit 11 месяцев назад
Dear Prime, goto politics. Your trolling, crowd management/manipulation skills and rust propaganda are perfect.
@zebraforceone
@zebraforceone 11 месяцев назад
Laravel Octane is pretty ridiculous
@viko1786
@viko1786 11 месяцев назад
Do it as an April fools joke
@mindasb
@mindasb 11 месяцев назад
You all need to write the following on a blackboard like Bart: Languages are not slow or fast - runtimes are. Languages are not slow or fast - runtimes are. Languages are not slow or fast - runtimes are. Languages are not slow or fast - runtimes are. Languages are not slow or fast - runtimes are. People saying "PHP is not fast, that library is" , LOL WHAT? Can anyone compare C compilers from the 80s with modern ones ? :D
@Kioki1-x8p
@Kioki1-x8p 3 месяца назад
As always old school tech still more stable and reliable.
@muhdkamilmohdbaki7054
@muhdkamilmohdbaki7054 11 месяцев назад
You all got it wrong. X, formerly known as Twitter is the fastest of anything😂.
@Tony-dp1rl
@Tony-dp1rl 11 месяцев назад
My next benchmark ... MS-DOS with GWBasic server faster than Go.
@stanleyparks
@stanleyparks 11 месяцев назад
GO destroyed by open source elephant-logo chad swole language
@Z4KIUS
@Z4KIUS 8 месяцев назад
php serve is slow, php-fpm still has some unnecessary overhead, especially when using big frameworks, but php itself does crunching really fast when you let it
@colewyant4271
@colewyant4271 11 месяцев назад
Hand written letters are faster than C
@nextlifeonearth
@nextlifeonearth 11 месяцев назад
Bash is so fast. I start my optimised C application in it and it wins all the benchmarks. Bash is so fast.
@lcarv20
@lcarv20 11 месяцев назад
css as backend benchmark needed. To prove css is faster than c++.
@nightshade427
@nightshade427 11 месяцев назад
Try adding drogon to your echo test
@xcrap
@xcrap 11 месяцев назад
Even Prime is faster than GO ~:)
@dovh49
@dovh49 11 месяцев назад
According to techempower benchmarks PHP can be faster than Go, but Go does have multiple implementations that are faster than PHP. But it looks like you can get PHP going extremely fast. And, yes, PHP is faster than JS, significantly. Granted, C# is faster than Go, C# is only slower than Rust and C++.
@nodidog
@nodidog 11 месяцев назад
PHP 😂 people still fighting the good fight
@yungifez
@yungifez 11 месяцев назад
We shall not falter
@jackmoloney
@jackmoloney 11 месяцев назад
JavaScript > C - April fools day upload
@linkernick5379
@linkernick5379 11 месяцев назад
Swollagen, haha 😂
@azeek
@azeek 11 месяцев назад
Please don't do that benchmark thing you are coming up with this :(
@iliealexandru2181
@iliealexandru2181 11 месяцев назад
Python is faster than C Kappa
@forevernoob97
@forevernoob97 10 месяцев назад
It's quite sad to see that most people still believe the myth that there are intrinsically "fast" or "slow" languages.
@tokiomutex4148
@tokiomutex4148 11 месяцев назад
Good old offload to C trick
@mzerone-g6m
@mzerone-g6m 11 месяцев назад
🤔it is not a lie and already in production use and php written in c
@GeorgijTovarsen
@GeorgijTovarsen 11 месяцев назад
"How Tcl is WAY faster than Rust"
@thisbridgehascables
@thisbridgehascables 11 месяцев назад
Sending a string of text and asking for it back just seems like an unrealistic test. Again technology if at its pace will make these silly benchmarks unnecessary and the language wars will be ignored. Pick the language which meets the project’s requirements and will have the best chance of success. Highly dependent on the size and scale of the application..
@efenollal
@efenollal 11 месяцев назад
PHP/Hack ftw
@deathbooker7466
@deathbooker7466 11 месяцев назад
DISINFORMATIONaegen
@yungifez
@yungifez 11 месяцев назад
That's a bit extreme 😂😂
@udakyv2
@udakyv2 11 месяцев назад
Dam, its fast
@Samurai-Kit
@Samurai-Kit 11 месяцев назад
PHP is HOT ❤🎉😊 Ruby is beautiful ❤🎉😂 Rust is ugly lang😂
@susiebaka3388
@susiebaka3388 7 месяцев назад
Swolagen 💪 😂
@eduardoADSL
@eduardoADSL 11 месяцев назад
I can manually parse a JSON file faster than Go.
@anj000
@anj000 11 месяцев назад
3:40 do it
@softwarechats9307
@softwarechats9307 11 месяцев назад
"I could make so many bad benchmarks" ... just make a troll youtube channel with nothing but BS benchmarks!
@uni-pl
@uni-pl 10 месяцев назад
js is faster than c++
@mbehboodian
@mbehboodian 11 месяцев назад
JS is faster than C
@user-qr4jf4tv2x
@user-qr4jf4tv2x 11 месяцев назад
swolengen
Далее
Does PHP Suck? | Prime React
29:56
Просмотров 153 тыс.
We Tried That, Didn't Work | Prime Reacts
13:40
Просмотров 91 тыс.
Avaz Oxun - Turqi sovuq kal
14:50
Просмотров 889 тыс.
Goroutines ARE USELESS
12:57
Просмотров 98 тыс.
Laravel vs Rails for Javascript developers
19:50
Просмотров 2,3 тыс.
Matt Talks About WordPress Situation
27:01
Просмотров 84 тыс.
Should you use Bun, Deno etc. instead of Node.js?
7:28
Why I Quit Netflix
7:11
Просмотров 508 тыс.
DONT USE AN ORM | Prime Reacts
25:46
Просмотров 229 тыс.
Going Back To Next
45:09
Просмотров 76 тыс.
Write Laravel, not PHP (feat. Aaron Francis) | 029
58:45
PHP Is Terrible...
15:30
Просмотров 203 тыс.
Avaz Oxun - Turqi sovuq kal
14:50
Просмотров 889 тыс.