GitHub - zaghaghi/vaporcache: VaporCache: Embedded In-Memory Key-Value Database For AWS Lambda Functions

1 min read Original article ↗

Introduction

VaporCache is a Rust project that implements an Embedded In-Memory Key-Value Database for AWS Lambda Functions.

Prerequisites

Building

To build the project for production, run cargo lambda build --extension --release. Remove the --release flag to build for development.

Read more about building your lambda extension in the Cargo Lambda documentation.

Deploying

To deploy the project, run cargo lambda deploy --extension. This will upload the extension to your AWS account as an AWS Lambda Layer.

Read more about deploying your lambda extension in the Cargo Lambda documentation.