Let say I have a community with 50 000 members.
So there are one Redis set called community_###_members
with 50 000 sha1 keys of users and for each user his own set user_###_communities
exists with sha1 hash of community above
In some time I decide to delete community.. What is the best algorithm to kill all members?
Thanks.