The Upstash dashboard provides an example to connect to my Redis instance using a connection string:
const Redis = require("ioredis");
// Using *** to mask my credentials
let client = new Redis("redis://:***@fly-***.upstash.io:6379");
client.set('foo', 'bar');
Connect from within the Fly network. This is automatic from any Fly app, but in development you’ll need to activate a Wireguard tunnel on your machine or use the fly proxy command.
How does one do that? Is simply passing in the family: 6 option enough? Do I need to use some sort of .internal address, or can I simply use the upstash.io url?