主页 > 知识库 > 基于Redis实现抽奖功能及问题小结

基于Redis实现抽奖功能及问题小结

热门标签:山东外呼销售系统招商 日本中国地图标注 郑州人工智能电销机器人系统 魔兽2青云地图标注 北京400电话办理收费标准 十堰营销电销机器人哪家便宜 宿迁便宜外呼系统平台 超呼电话机器人 贵州电销卡外呼系统

1、分析

  • 公司年底要做年会所有的员工都要参与抽奖的环节
  • 平台的产品要进行抽奖活动

这个时候我们可以利用redis中的set集合中的spop来实现。

特征:抽奖成功的人会自动从集合中删除,即获取到奖品的人不再继续参与抽奖。

spop命令:随机返回元素,元素从集合中删除该元素

2、初始化名单数据

package com.example.service;

import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service;

import javax.annotation.PostConstruct;
import java.util.ArrayList;
import java.util.List;

/**
 * @Auther: 长颈鹿
 * @Date: 2021/08/21/14:09
 * @Description:
 */
@Service
@Slf4j
public class SpopRandomSetService {

    @Autowired
    private RedisTemplate redisTemplate;

    private static final String SPOP_USER_SETS = "pop:user:set";

    // 把所有员工全部添加到集合列表中
    @PostConstruct
    public void initData(){
        log.info("初始化奖品等级信息...");
        // 判断集合是否已经存在
        boolean flag = this.redisTemplate.hasKey(SPOP_USER_SETS);
        // 防止作弊
        if (!flag) {
            // 获取所有员工的信息
            ListInteger> initDataList = initDataList();
            // 把员工信息写入到redis中 sadd key data
            initDataList.forEach(data -> this.redisTemplate.opsForSet().add(SPOP_USER_SETS, data));
        }
    }

    // 模拟100用户抽奖
    private ListInteger> initDataList() {
        // todo : 从数据库里面来,把公司里面所有的员工从数据表中全部查询出来
        ListInteger> listData = new ArrayList>();
        for (int i = 0; i  100; i++) {
            listData.add(i + 1);
        }
        return listData;
    }

}

3、具体抽奖方法

// 随机抽取用户
    public int start(){
        return (int)redisTemplate.opsForSet().pop(SPOP_USER_SETS);
    }

4、抽奖接口测试

package com.example.controller;

import com.example.service.SpopRandomSetService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @Auther: 长颈鹿
 * @Date: 2021/08/21/14:13
 * @Description: 抽奖接口测试
 */
@RestController
public class SpopRandomSetController {

    @Autowired
    private SpopRandomSetService spopRandomSetService;

    @PostMapping("/sPop/random/user")
    public int start() {
        return spopRandomSetService.start();
    }

}

5、小结

# 查询集合成员
smembers pop:user:Set
# 查询集合的长度变化
scard pop:user:Set

spop:随机从集合取出一个元素返回,并且从集合中删除该元素。

到此这篇关于基于Redis实现抽奖功能的文章就介绍到这了,更多相关Redis实现抽奖内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
  • Redis实战之商城购物车功能的实现代码
  • java redis 实现简单的用户签到功能
  • 使用redis的increment()方法实现计数器功能案例
  • Java使用Redis实现秒杀功能
  • 多个SpringBoot项目采用redis实现Session共享功能
  • 使用Redis实现微信步数排行榜功能

标签:果洛 杨凌 江苏 台州 大庆 吉安 朝阳 北京

巨人网络通讯声明:本文标题《基于Redis实现抽奖功能及问题小结》,本文关键词  基于,Redis,实现,抽奖,功,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《基于Redis实现抽奖功能及问题小结》相关的同类信息!
  • 本页收集关于基于Redis实现抽奖功能及问题小结的相关信息资讯供网民参考!
  • 推荐文章