This example shows how Redis set commands SADD and SREM work for membership management. We start with an empty set 'myset'. Using SADD, we add three members: apple, banana, and cherry. The command returns 3, meaning all three were added. Next, SISMEMBER checks if banana is in the set and returns 1 (true). Then, SREM removes banana and returns 1, indicating one member removed. Finally, SISMEMBER checks banana again and returns 0 (false), confirming banana is no longer in the set. The set changes from empty to {apple, banana, cherry}, then to {apple, cherry} after removal. This shows how to add, check, and remove members in Redis sets.