skip to Main Content

Redis – Cloudformation stack failure due to – Service: AmazonElastiCache; Status Code: 400; Error Code: InvalidParameterCombination

I have following template file. cfn-params: default: resourceName: 'hlp-MySrvc-redis' application: 'MySrvc' navService: 'MySrvc' service: 'MySrvc' pci: 'cat3' team: 'MySrvc' teamContact: '' elastiCacheSubnetGroup: 'nonprod' elastiCacheVpcSecurityGroupIds: 'sg-1234' elastiCacheEngineVersion: '5.0.0' elastiCacheParameterGroupName: 'default.redis5.0' elastiCacheReplicationGroupIdPrefix: 'MySrvc' elastiCacheReplicationGroupDescription: 'Redis for MySrvc' elastiCacheTransitEncryptionEnabled: 'false' elastiCacheAtRestEncryptionEnabled: 'false' elastiCacheUpdateReplacePolicy:…

VIEW QUESTION

Use @redis/json node library to store json objects

I tried to use the "@redis/json" library to set json object in Redis. const redisClient = await createClient({ url: `redis://${redis.host}:${redis.port}`, }); await redisClient.connect(); redisClient.json.set() //getting json undefined error But redisClient doesn't recognize the json object. The docs are not clear

VIEW QUESTION
Back To Top
Search