public Set<byte[]> sMembers(byte[] key) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.smembers(key));
       return null;
     }
     return SrpUtils.toSet(client.smembers(key).data());
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }