Search code examples
redisstackexchange.redisbooksleeve

What is the equivalent of Sets.GetAllString() from BookSleeve in StackExchange.Redis?


In BookSleeve there is a connection.Sets.GetAllString() method. What is the equivalent in StackExchange.Redis?

Thanks!


Solution

  • Found it: connection.SetMembers(...) gets all the strings for a set from a key.