TilakPutta-zz / lambda-redis

Simple example of connect AWS Lambda with ElasticCache (Redis)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example of Payload

  • Create Record
{
  "create": true,
  "key": 1,
  "value": "REGINALDO"
}
  • Read Record
{
  "get": true,
  "key": 1
}
  • Update Record
{
  "update": true,
  "key": 1
  "data": {
    "age": 12,
    "gender": "male"
  }
}
  • Remove Record
{
  "remove": true,
  "key": 1
}

About

Simple example of connect AWS Lambda with ElasticCache (Redis)

License:MIT License


Languages

Language:JavaScript 100.0%