theroyakashfortheroyakash publicationstheroyakash.hashnode.net·Nov 21, 2020FeaturedHow to benchmark your python program?Let's say you have a really slow program and you want to benchmark where your program is taking most of the time to run. If you can find that you can just optimize that part of the program to run faster. There is couple of way of doing this going thr...Discuss·93 likes·358 readsSupercharge your python programsPython 3
Christian BonzeletforBuilding in the Cloudcremich.hashnode.net·Dec 29, 2022FeaturedAWS Step function vs. AWS Lambda benchmarkLooking into the AWS ecosystem of serverless services, AWS Step Functions is one of my personal most favorite services. I recently had a chat with some colleagues about a potential use case of Step functions in favor of AWS Lambda. While we discussed...Discuss·91 likes·871 readsAWS Step Functionsserverless
Yashish Duafor Codewithduacodewithdua.hashnode.net·Oct 25, 2020Diagnose performance bottlenecks using node-clinic | Review #1Nodejs has proved to be highly performant, by cleaning dividing synchronous and asynchronous activities. However, at scale, there can be bottlenecks affecting performance severely, for example, even the slightest blocking in the event loop can increa...Discuss·45 likes·691 readsNode.js
Alberto LerdaforDeploy Golang web apps using Docker & Cosecudevops.hashnode.net·Mar 2, 2023Docker hardening: bench toolWe have shown some ways in which one can improve his Dockerfile, but what we have shown doesn't cover every possible strategy. It would be great if there was a tool that could help us write better Dockerfiles. Today we discover one such tool: docker ...DiscussDocker
Vady OreforVady Ore | Software Engineervady.hashnode.net·Feb 25, 2023DI Benchmark: Vanilla, RegistryComposer, typed-inject, tsyringe, inversify, nest.jsIn the previous articles, I've introduced a framework-less and clean way to perform Dependency Injection in TypeScript. The approach has multiple pros such as type-safety, zero-cost overhead, and others. However, the one missing piece I had was - ben...Discuss·7 likes·43 readsPure DI in TypeScript Node.jsBenchmark
OpenDevforOpenDev Blogopendev.hashnode.net·Feb 19, 2023[Golang] Test Performance - 2Comparing the Check If-Else String package main import ( "strings" "testing" ) func CheckIfElseEmpty(s string) string { if s == "sdfsdsdfsdsdfsdsdfsdsdfsdsdfsd" { return s } return s } func CheckIfElseLen(s string) strin...Discuss·2 likes·59 readsgolangGo Language
mazhar zarsawforMy Expriences in Flutter and .Netflutterwithdotnet.hashnode.net·Jan 15, 2023Navigating Unmapped Data: A Comparison of EF Core and DapperRecently, I've come across the news that EF Core 8.0 has introduced a new feature for querying unmapped data. This sounds like an exciting development and brings to mind a challenge I faced last year. I had to query unmapped data using EF Core and, a...Discuss·350 readsentity framework
Christian BonzeletforBuilding in the Cloudcremich.hashnode.net·Dec 29, 2022FeaturedAWS Step function vs. AWS Lambda benchmarkLooking into the AWS ecosystem of serverless services, AWS Step Functions is one of my personal most favorite services. I recently had a chat with some colleagues about a potential use case of Step functions in favor of AWS Lambda. While we discussed...Discuss·91 likes·871 readsAWS Step Functionsserverless
Christian BonzeletforBuilding in the Cloudcremich.hashnode.net·Dec 29, 2022AWS Step Function vs. AWS Lambda benchmark - Part 2🥊 It is time for a battle again. After I published the first part of my comparison, I was overwhelmed by the amount of feedback I received. May it be comments on my post, or discussions on Twitter or LinkedIn. The fact that the initial post triggere...Discuss·11 likes·131 readsAWS Step Functionsserverless
Ramadan OmarforOmar’s blogramadanomar.hashnode.net·Dec 9, 2022Web Assembly and the Future of the Web: An OverviewWeb Assembly (abbreviated as Wasm) is a binary instruction format for a stack-based virtual machine. It is designed as a low-level language for compiling high-level languages such as C, C++, and Rust into a format that can be run in modern web browse...Discuss·43 readsWeb Development
MD Rashid HussainforCubiclem3rashid.hashnode.net·Dec 5, 2022Benchmarking Nodejs and Golang ServersIn this test, I made two servers, one with node (express) and the other with golang (gin) and tested out their performance in handling requests. I used Apache bench for this and logged the results into a log file at the end. Let me give you a glimpse...Discuss·3 likes·105 readsNode.js
Andrei PechkurovforRandom thoughts on concurrency, databases and distributed systemspuzpuzpuz.hashnode.net·Nov 4, 2022Concurrent Map in Go vs Java: Yet Another Meaningless BenchmarkToday we're comparing Java's j.u.c.ConcurrentHashMap and Go's xsync.MapOf in a totally non-scientific, unfair benchmark. While most of such language performance comparisons are generally useless and harmful, the purpose of this exercise is a comparis...Discuss·1 like·1.0K readsJava
Pavel Durovforp3ld3v blogdrkimchi.hashnode.net·Oct 10, 2022PyPy,Python and performance benchmarkingIn this article, I will cover my experience with the PyPy that I was only recently exposed to. This article complements the Writing an Interpreter with PyPy tutorial from 2011 [1]. When I first tried to follow the steps of this blog post, I encounter...Discuss·80 readspypy