VaporCache is a Rust project that implements an Embedded In-Memory Key-Value Database for AWS Lambda Functions.
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.
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.