0

Is DynamoDB a compatible option with RedisGears? In terms of a write-behind strategy, DynamoDB would be the backing DB.

TruBlu
  • 441
  • 1
  • 4
  • 15

1 Answers1

0

You can write to Dynamo DB from a RedisGears recipe as write behind cache pattern. Any target that has a python or java API would work.

Redis (the company) offers Redis Data Integration Write Behind, a product that allows you to create write behind pipelines without coding. We do not yet support Dynamo DB but should be easy to add if customers wants it

Yaron
  • 79
  • 3
  • Thanks! Just to clarify, something similar to one of these examples? Surprised there is not an AWS example https://github.com/RedisGears/rgsync/tree/master/examples – TruBlu May 23 '23 at 01:41