In my app I dynamically create new pubsub
channels and there might be too many like 5k per day. According to my app's requirements any channel is used for at most 5minutes.
Considering this situation, thousands of unused channels will be present in the app in a week. So how can I delete unused channels or should I even delete them. Do they stored in memory? What happens to the messages published via them, do they stay on the redis' memory?
thanks