chrisutz·há 5 anos·discussI've found lambda helpful for adding bits of code in other languages to your stack. Want to use a NodeJS library from your Python app? Jam the NodeJS in a lambda and don't worry about maintaining/scaling it.
chrisutz·há 5 anos·discussStarted a new job working on a company's API team. The API had out of memory issues and had processes crashing all the time.The code was PHP. All API calls ended like this:echo json_encode($data) . "\n";Changed just one character, the period to a comma so the string wasn't duplicated before being output. Problem solved. Felt like a hero.