anyone using ioredis, is this the correct way to connect to the internal redis service? ```ts import Redis from 'ioredis'; const redis = new Redis(Bun.env.REDIS_PRIVATE_URL); export default redis; ``` I don't seem to get any errors on my code, but it's not looking at redis at all. my code just stops? ```ts import redis from '@cache/redis'; import { logger } from '@common/logger'; export async function isSuccessChannel(message: Message) { try { const { channel_id, guild_id } = selectChannelSchema.parse({ channel_id: BigInt(message.channelId), guild_id: BigInt(message.guildId as string), }); const cacheKey = `guild:${guild_id}:channel:${channel_id}:isSuccess`; // First, check if the result is in the cache logger.info(`Checking cache for channel (${channel_id})`); const cachedResult = await redis.get(cacheKey); // CODE STOPS WORKING FROM HERE AND NO LOGS if (cachedResult !== null) { logger.info(`Cached channel (${channel_id}) is success: ${cachedResult}`); return cachedResult === 'true'; } logger.info(`Channel (${channel_id}) is not cached, checking database`); ....```