I'm building an API in Node and looking to store the API key/access token in Redis.
How best can I generate a unique API key/access token to store in Redis as the key and an email address as the value?
Does Redis have an inbuilt function for generating unique ids with certain length and character set or how best should I tackle this?
Thank you!