# File lib/feature/repository/redis_repository.rb, line 36
      def add_active_feature(feature)
        check_feature_is_not_symbol(feature)
        check_feature_already_in_list(feature)
        redis.hset(@redis_key, feature, true)
      end