├── .gitignore ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── benchmark.py ├── fibonacci-function ├── fibonacci.py ├── payload.json ├── performance_chart.png └── serverless.yml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .serverless 3 | *.pyc -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epsagon/lambda-memory-performance-benchmark/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epsagon/lambda-memory-performance-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epsagon/lambda-memory-performance-benchmark/HEAD/README.rst -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epsagon/lambda-memory-performance-benchmark/HEAD/benchmark.py -------------------------------------------------------------------------------- /fibonacci-function/fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epsagon/lambda-memory-performance-benchmark/HEAD/fibonacci-function/fibonacci.py -------------------------------------------------------------------------------- /fibonacci-function/payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "index": 25 3 | } -------------------------------------------------------------------------------- /fibonacci-function/performance_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epsagon/lambda-memory-performance-benchmark/HEAD/fibonacci-function/performance_chart.png -------------------------------------------------------------------------------- /fibonacci-function/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epsagon/lambda-memory-performance-benchmark/HEAD/fibonacci-function/serverless.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 --------------------------------------------------------------------------------