
1humy (1humy) asked a question.
Using a pre-registration workflow i need to connect to an AWS redis cluster to get some cache keys, as we want to eliminate table lookups within workflows, i tried looking at connectors but i can't see any related to Redis or its protocol RESP

@1humy (1humy) - RESP looks like a Binary protocol. Workflows is designed to function essentially with Web Server front-ends over the HTTP (text) protocol which commonly have either (REST / SOAP) API behind them.
For Workflows to function in your described scenario there would need to be a means to not only send a command to an endpoint that could then perform the "RESP" function to obtain the results you want. It would also need to be able to return those results to Workflows.
So something like: Workflows > REST > RESP > (the data) > RESP > REST > Workflows.
It would be great if workflows would have that kind of integration, given your answer i will need to implement a proxy http service to redis which causes more network latency and adds an additional layer of support.