use const userId = String(user._id); // Safely convert _id to a string const userData = JSON.stringify(user); // Serialize the user object
redis.set(userId, userData); // Store the data in Redis