How should I properly handle connection to MySQL using node.js and lambda?
I have a AWS Lambda function written in node.js that utilizes the mysql npm library. I am having a hard time understanding how connections work in a serverless environment. Should I close the connection at the end of my function, connection.end ? Sho...